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
Yuta HIGUCHI
2014-10-07 14:24:37 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3215ebd1e1738618b45c723cd35a9cd10a52b1a5
3215ebd1
1 parent
a5d0d788
core-dist OSGi related fixes
Change-Id: I4f4690652604efb1a5f4000da71190c68d70d83a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
core/store/dist/src/main/java/org/onlab/onos/store/cluster/impl/DistributedClusterStore.java
features/features.xml
core/store/dist/src/main/java/org/onlab/onos/store/cluster/impl/DistributedClusterStore.java
View file @
3215ebd
...
...
@@ -7,11 +7,9 @@ import com.google.common.cache.RemovalNotification;
import
com.google.common.collect.ImmutableSet
;
import
org.apache.felix.scr.annotations.Activate
;
import
org.apache.felix.scr.annotations.Component
;
import
org.apache.felix.scr.annotations.Deactivate
;
import
org.apache.felix.scr.annotations.Reference
;
import
org.apache.felix.scr.annotations.ReferenceCardinality
;
import
org.apache.felix.scr.annotations.Service
;
import
org.onlab.onos.cluster.ClusterEvent
;
import
org.onlab.onos.cluster.ClusterStore
;
import
org.onlab.onos.cluster.ClusterStoreDelegate
;
...
...
@@ -37,8 +35,8 @@ import static org.onlab.packet.IpPrefix.valueOf;
/**
* Distributed implementation of the cluster nodes store.
*/
@Component
(
immediate
=
true
)
@Service
//
@Component(immediate = true)
//
@Service
public
class
DistributedClusterStore
extends
AbstractStore
<
ClusterEvent
,
ClusterStoreDelegate
>
implements
ClusterStore
{
...
...
features/features.xml
View file @
3215ebd
...
...
@@ -9,6 +9,12 @@
<bundle>
mvn:org.apache.commons/commons-lang3/3.3.2
</bundle>
<bundle>
mvn:com.google.guava/guava/18.0
</bundle>
<bundle>
mvn:io.netty/netty/3.9.2.Final
</bundle>
<bundle>
mvn:io.netty/netty-common/4.0.23.Final
</bundle>
<bundle>
mvn:io.netty/netty-buffer/4.0.23.Final
</bundle>
<bundle>
mvn:io.netty/netty-transport/4.0.23.Final
</bundle>
<bundle>
mvn:io.netty/netty-handler/4.0.23.Final
</bundle>
<bundle>
mvn:io.netty/netty-codec/4.0.23.Final
</bundle>
<bundle>
mvn:commons-pool/commons-pool/1.6
</bundle>
<bundle>
mvn:com.hazelcast/hazelcast/3.3
</bundle>
<bundle>
mvn:io.dropwizard.metrics/metrics-core/3.1.0
</bundle>
...
...
@@ -55,6 +61,9 @@
<bundle>
mvn:org.onlab.onos/onos-core-dist/1.0.0-SNAPSHOT
</bundle>
<bundle>
mvn:org.onlab.onos/onos-core-serializers/1.0.0-SNAPSHOT
</bundle>
<bundle>
mvn:org.onlab.onos/onlab-netty/1.0.0-SNAPSHOT
</bundle>
<bundle>
mvn:org.onlab.onos/onos-core-hz-common/1.0.0-SNAPSHOT
</bundle>
<bundle>
mvn:org.onlab.onos/onos-core-hz-cluster/1.0.0-SNAPSHOT
</bundle>
</feature>
<feature
name=
"onos-core-hazelcast"
version=
"1.0.0"
...
...
Please
register
or
login
to post a comment