Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tom
2014-09-15 14:46:49 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f297f39ccf35f6058f07c4a58c7bbb7d1680b6f4
f297f39c
1 parent
93afebc5
Added a skeletal structure for forwarding app.
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
60 deletions
apps/pom.xml
apps/tvue/pom.xml
core/trivial/src/main/java/org/onlab/onos/net/trivial/host/impl/SimpleHostManager.java
apps/pom.xml
View file @
f297f39
...
...
@@ -37,43 +37,6 @@
</dependency>
<dependency>
<groupId>
org.onlab.onos
</groupId>
<artifactId>
onlab-rest
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-servlet
</artifactId>
</dependency>
<dependency>
<groupId>
com.sun.jersey.jersey-test-framework
</groupId>
<artifactId>
jersey-test-framework-core
</artifactId>
<version>
1.18.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.sun.jersey.jersey-test-framework
</groupId>
<artifactId>
jersey-test-framework-grizzly2
</artifactId>
<version>
1.18.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
</dependency>
<dependency>
<groupId>
org.osgi
</groupId>
<artifactId>
org.osgi.core
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.felix
</groupId>
<artifactId>
org.apache.felix.scr.annotations
</artifactId>
</dependency>
...
...
@@ -84,27 +47,11 @@
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<extensions>
true
</extensions>
<configuration>
<instructions>
<_wab>
src/main/webapp/
</_wab>
<Bundle-SymbolicName>
${project.groupId}.${project.artifactId}
</Bundle-SymbolicName>
<Import-Package>
org.osgi.framework,
javax.ws.rs,javax.ws.rs.core,
com.sun.jersey.api.core,
com.sun.jersey.spi.container.servlet,
com.sun.jersey.server.impl.container.servlet,
com.fasterxml.jackson.databind,
com.fasterxml.jackson.databind.node,
org.onlab.rest.*,
org.onlab.onos.*
</Import-Package>
<Web-ContextPath>
${web.context}
</Web-ContextPath>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-scr-plugin
</artifactId>
</plugin>
</plugins>
</build>
...
...
apps/tvue/pom.xml
View file @
f297f39
...
...
@@ -20,4 +20,78 @@
<web.context>
/onos/tvue
</web.context>
</properties>
<dependencies>
<dependency>
<groupId>
org.onlab.onos
</groupId>
<artifactId>
onlab-rest
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.sun.jersey
</groupId>
<artifactId>
jersey-servlet
</artifactId>
</dependency>
<dependency>
<groupId>
com.sun.jersey.jersey-test-framework
</groupId>
<artifactId>
jersey-test-framework-core
</artifactId>
<version>
1.18.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.sun.jersey.jersey-test-framework
</groupId>
<artifactId>
jersey-test-framework-grizzly2
</artifactId>
<version>
1.18.1
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
</dependency>
<dependency>
<groupId>
org.osgi
</groupId>
<artifactId>
org.osgi.core
</artifactId>
</dependency>
<dependency>
<groupId>
org.apache.felix
</groupId>
<artifactId>
org.apache.felix.scr.annotations
</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<extensions>
true
</extensions>
<configuration>
<instructions>
<_wab>
src/main/webapp/
</_wab>
<Bundle-SymbolicName>
${project.groupId}.${project.artifactId}
</Bundle-SymbolicName>
<Import-Package>
org.osgi.framework,
javax.ws.rs,javax.ws.rs.core,
com.sun.jersey.api.core,
com.sun.jersey.spi.container.servlet,
com.sun.jersey.server.impl.container.servlet,
com.fasterxml.jackson.databind,
com.fasterxml.jackson.databind.node,
org.onlab.rest.*,
org.onlab.onos.*
</Import-Package>
<Web-ContextPath>
${web.context}
</Web-ContextPath>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
...
...
core/trivial/src/main/java/org/onlab/onos/net/trivial/host/impl/SimpleHostManager.java
View file @
f297f39
...
...
@@ -140,7 +140,7 @@ public class SimpleHostManager
HostEvent
event
=
store
.
createOrUpdateHost
(
provider
().
id
(),
hostId
,
hostDescription
);
if
(
event
!=
null
)
{
log
.
info
(
"Host {} detected"
,
hostId
);
log
.
debug
(
"Host {} detected"
,
hostId
);
post
(
event
);
}
}
...
...
@@ -151,7 +151,7 @@ public class SimpleHostManager
checkValidity
();
HostEvent
event
=
store
.
removeHost
(
hostId
);
if
(
event
!=
null
)
{
log
.
info
(
"Host {} vanished"
,
hostId
);
log
.
debug
(
"Host {} vanished"
,
hostId
);
post
(
event
);
}
}
...
...
Please
register
or
login
to post a comment