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-12 01:01:43 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5ec89f9ca72b1f72d1b79d277e3e0b77c5a84617
5ec89f9c
1 parent
80912e67
remove peermsg package
Change-Id: Iefbf425951a7134bd7ecdda4d1a8e9477d349587
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
6 additions
and
13 deletions
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/impl/package-info.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/DeviceAntiEntropyAdvertisement.java → core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceAntiEntropyAdvertisement.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/DeviceAntiEntropyRequest.java → core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceAntiEntropyRequest.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/DeviceFragmentId.java → core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceFragmentId.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/GossipDeviceStore.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/InitDeviceDescs.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/PortFragmentId.java → core/store/dist/src/main/java/org/onlab/onos/store/device/impl/PortFragmentId.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/package-info.java
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/peermsg/DeviceFragmentIdTest.java → core/store/dist/src/test/java/org/onlab/onos/store/device/impl/DeviceFragmentIdTest.java
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/peermsg/PortFragmentIdTest.java → core/store/dist/src/test/java/org/onlab/onos/store/device/impl/PortFragmentIdTest.java
core/store/dist/src/main/java/org/onlab/onos/store/cluster/messaging/impl/package-info.java
View file @
5ec89f9
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/
peermsg/
DeviceAntiEntropyAdvertisement.java
→
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceAntiEntropyAdvertisement.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
static
com
.
google
.
common
.
base
.
Preconditions
.
checkNotNull
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/
peermsg/
DeviceAntiEntropyRequest.java
→
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceAntiEntropyRequest.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
static
com
.
google
.
common
.
base
.
Preconditions
.
checkNotNull
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/
peermsg/
DeviceFragmentId.java
→
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/DeviceFragmentId.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
java.util.Objects
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/GossipDeviceStore.java
View file @
5ec89f9
...
...
@@ -39,9 +39,6 @@ import org.onlab.onos.store.cluster.messaging.ClusterMessage;
import
org.onlab.onos.store.cluster.messaging.ClusterMessageHandler
;
import
org.onlab.onos.store.cluster.messaging.MessageSubject
;
import
org.onlab.onos.store.common.impl.Timestamped
;
import
org.onlab.onos.store.device.impl.peermsg.DeviceAntiEntropyAdvertisement
;
import
org.onlab.onos.store.device.impl.peermsg.DeviceFragmentId
;
import
org.onlab.onos.store.device.impl.peermsg.PortFragmentId
;
import
org.onlab.onos.store.serializers.KryoSerializer
;
import
org.onlab.onos.store.serializers.DistributedStoreSerializers
;
import
org.onlab.util.KryoPool
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/InitDeviceDescs.java
View file @
5ec89f9
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/
peermsg/
PortFragmentId.java
→
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/PortFragmentId.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
java.util.Objects
;
...
...
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/peermsg/package-info.java
deleted
100644 → 0
View file @
80912e6
/**
* Structure and utilities used for inter-Node messaging.
*/
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/
peermsg/
DeviceFragmentIdTest.java
→
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/DeviceFragmentIdTest.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
static
org
.
onlab
.
onos
.
net
.
DeviceId
.
deviceId
;
...
...
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/
peermsg/
PortFragmentIdTest.java
→
core/store/dist/src/test/java/org/onlab/onos/store/device/impl/PortFragmentIdTest.java
View file @
5ec89f9
package
org
.
onlab
.
onos
.
store
.
device
.
impl
.
peermsg
;
package
org
.
onlab
.
onos
.
store
.
device
.
impl
;
import
static
org
.
onlab
.
onos
.
net
.
DeviceId
.
deviceId
;
...
...
Please
register
or
login
to post a comment