Showing
5 changed files
with
7 additions
and
10 deletions
... | @@ -33,9 +33,8 @@ public interface FlowRuleProviderService extends ProviderService<FlowRuleProvide | ... | @@ -33,9 +33,8 @@ public interface FlowRuleProviderService extends ProviderService<FlowRuleProvide |
33 | * Pushes the collection of flow entries currently applied on the given | 33 | * Pushes the collection of flow entries currently applied on the given |
34 | * device. | 34 | * device. |
35 | * | 35 | * |
36 | - * @param deviceId device identifier | 36 | + * @param flowRules collection of flow rules |
37 | - * @return collection of flow entries | ||
38 | */ | 37 | */ |
39 | - void pushFlowMetrics(Iterable<FlowRule> flowEntries); | 38 | + void pushFlowMetrics(Iterable<FlowRule> flowRules); |
40 | 39 | ||
41 | } | 40 | } | ... | ... |
... | @@ -31,7 +31,7 @@ public final class Criteria { | ... | @@ -31,7 +31,7 @@ public final class Criteria { |
31 | * Creates a match on ETH_SRC field using the specified value. This value | 31 | * Creates a match on ETH_SRC field using the specified value. This value |
32 | * may be a wildcard mask. | 32 | * may be a wildcard mask. |
33 | * | 33 | * |
34 | - * @param macValue MAC address value or wildcard mask | 34 | + * @param mac MAC address value or wildcard mask |
35 | * @return match criterion | 35 | * @return match criterion |
36 | */ | 36 | */ |
37 | public static Criterion matchEthSrc(MacAddress mac) { | 37 | public static Criterion matchEthSrc(MacAddress mac) { |
... | @@ -42,7 +42,7 @@ public final class Criteria { | ... | @@ -42,7 +42,7 @@ public final class Criteria { |
42 | * Creates a match on ETH_DST field using the specified value. This value | 42 | * Creates a match on ETH_DST field using the specified value. This value |
43 | * may be a wildcard mask. | 43 | * may be a wildcard mask. |
44 | * | 44 | * |
45 | - * @param macValue MAC address value or wildcard mask | 45 | + * @param mac MAC address value or wildcard mask |
46 | * @return match criterion | 46 | * @return match criterion |
47 | */ | 47 | */ |
48 | public static Criterion matchEthDst(MacAddress mac) { | 48 | public static Criterion matchEthDst(MacAddress mac) { | ... | ... |
... | @@ -5,7 +5,6 @@ import org.onlab.packet.VlanId; | ... | @@ -5,7 +5,6 @@ import org.onlab.packet.VlanId; |
5 | 5 | ||
6 | /** | 6 | /** |
7 | * Abstraction of a single traffic treatment step. | 7 | * Abstraction of a single traffic treatment step. |
8 | - * @param <T> the type parameter for the instruction | ||
9 | */ | 8 | */ |
10 | public abstract class L2ModificationInstruction implements Instruction { | 9 | public abstract class L2ModificationInstruction implements Instruction { |
11 | 10 | ... | ... |
... | @@ -4,7 +4,6 @@ import org.onlab.packet.IpAddress; | ... | @@ -4,7 +4,6 @@ import org.onlab.packet.IpAddress; |
4 | 4 | ||
5 | /** | 5 | /** |
6 | * Abstraction of a single traffic treatment step. | 6 | * Abstraction of a single traffic treatment step. |
7 | - * @param <T> the type parameter for the instruction | ||
8 | */ | 7 | */ |
9 | public abstract class L3ModificationInstruction implements Instruction { | 8 | public abstract class L3ModificationInstruction implements Instruction { |
10 | 9 | ... | ... |
... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
28 | <br> | 28 | <br> |
29 | <img src="doc-files/onos-subsystem.png" alt="ONOS subsystem structure"><br> | 29 | <img src="doc-files/onos-subsystem.png" alt="ONOS subsystem structure"><br> |
30 | For example, the device-subsystem comprises of a core | 30 | For example, the device-subsystem comprises of a core |
31 | - {@link org.onlab.onos.net.trivial.device.impl.SimpleDeviceManager DeviceManager}, | 31 | + {@link org.onlab.onos.net.trivial.device.impl.DeviceManager}, |
32 | which exposes a north-bound | 32 | which exposes a north-bound |
33 | {@link org.onlab.onos.net.device.DeviceService} through which applications or other core components | 33 | {@link org.onlab.onos.net.device.DeviceService} through which applications or other core components |
34 | can learn about the global infrastructure device inventory and through | 34 | can learn about the global infrastructure device inventory and through |
... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
39 | </p> | 39 | </p> |
40 | 40 | ||
41 | <p> | 41 | <p> |
42 | - On the south-bound side, the core {@link org.onlab.onos.net.trivial.device.impl.SimpleDeviceManager DeviceManager} | 42 | + On the south-bound side, the core {@link org.onlab.onos.net.trivial.device.impl.DeviceManager} |
43 | exposes a {@link org.onlab.onos.net.device.DeviceProviderRegistry} through which any number of | 43 | exposes a {@link org.onlab.onos.net.device.DeviceProviderRegistry} through which any number of |
44 | {@link org.onlab.onos.net.device.DeviceProvider} entities can register and in turn obtain a | 44 | {@link org.onlab.onos.net.device.DeviceProvider} entities can register and in turn obtain a |
45 | {@link org.onlab.onos.net.device.DeviceProviderService}. Device and port information can then be | 45 | {@link org.onlab.onos.net.device.DeviceProviderService}. Device and port information can then be |
... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
52 | <p> | 52 | <p> |
53 | Within the core, the tasks of indexing, persisting and synchronizing the | 53 | Within the core, the tasks of indexing, persisting and synchronizing the |
54 | global device and port state with the cluster peers falls on the | 54 | global device and port state with the cluster peers falls on the |
55 | - {@link org.onlab.onos.net.trivial.device.impl.SimpleDeviceStore DeviceStore}. | 55 | + {@link org.onlab.onos.net.device.DeviceStore}. |
56 | </p> | 56 | </p> |
57 | 57 | ||
58 | <p> | 58 | <p> | ... | ... |
-
Please register or login to post a comment