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-19 10:57:55 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c104d281fe4b09b6c12ee1c75e5c2d12eb976a5f
c104d281
1 parent
10262dd4
Fixed a few javadoc warnings.
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
10 deletions
core/api/src/main/java/org/onlab/onos/net/flow/FlowRuleProviderService.java
core/api/src/main/java/org/onlab/onos/net/flow/criteria/Criteria.java
core/api/src/main/java/org/onlab/onos/net/flow/instructions/L2ModificationInstruction.java
core/api/src/main/java/org/onlab/onos/net/flow/instructions/L3ModificationInstruction.java
src/main/javadoc/overview.html
core/api/src/main/java/org/onlab/onos/net/flow/FlowRuleProviderService.java
View file @
c104d28
...
...
@@ -33,9 +33,8 @@ public interface FlowRuleProviderService extends ProviderService<FlowRuleProvide
* Pushes the collection of flow entries currently applied on the given
* device.
*
* @param deviceId device identifier
* @return collection of flow entries
* @param flowRules collection of flow rules
*/
void
pushFlowMetrics
(
Iterable
<
FlowRule
>
flow
Entri
es
);
void
pushFlowMetrics
(
Iterable
<
FlowRule
>
flow
Rul
es
);
}
...
...
core/api/src/main/java/org/onlab/onos/net/flow/criteria/Criteria.java
View file @
c104d28
...
...
@@ -31,7 +31,7 @@ public final class Criteria {
* Creates a match on ETH_SRC field using the specified value. This value
* may be a wildcard mask.
*
* @param mac
Value
MAC address value or wildcard mask
* @param mac MAC address value or wildcard mask
* @return match criterion
*/
public
static
Criterion
matchEthSrc
(
MacAddress
mac
)
{
...
...
@@ -42,7 +42,7 @@ public final class Criteria {
* Creates a match on ETH_DST field using the specified value. This value
* may be a wildcard mask.
*
* @param mac
Value
MAC address value or wildcard mask
* @param mac MAC address value or wildcard mask
* @return match criterion
*/
public
static
Criterion
matchEthDst
(
MacAddress
mac
)
{
...
...
core/api/src/main/java/org/onlab/onos/net/flow/instructions/L2ModificationInstruction.java
View file @
c104d28
...
...
@@ -5,7 +5,6 @@ import org.onlab.packet.VlanId;
/**
* Abstraction of a single traffic treatment step.
* @param <T> the type parameter for the instruction
*/
public
abstract
class
L2ModificationInstruction
implements
Instruction
{
...
...
core/api/src/main/java/org/onlab/onos/net/flow/instructions/L3ModificationInstruction.java
View file @
c104d28
...
...
@@ -4,7 +4,6 @@ import org.onlab.packet.IpAddress;
/**
* Abstraction of a single traffic treatment step.
* @param <T> the type parameter for the instruction
*/
public
abstract
class
L3ModificationInstruction
implements
Instruction
{
...
...
src/main/javadoc/overview.html
View file @
c104d28
...
...
@@ -28,7 +28,7 @@
<br>
<img
src=
"doc-files/onos-subsystem.png"
alt=
"ONOS subsystem structure"
><br>
For example, the device-subsystem comprises of a core
{@link org.onlab.onos.net.trivial.device.impl.
SimpleDeviceManager
DeviceManager},
{@link org.onlab.onos.net.trivial.device.impl.DeviceManager},
which exposes a north-bound
{@link org.onlab.onos.net.device.DeviceService} through which applications or other core components
can learn about the global infrastructure device inventory and through
...
...
@@ -39,7 +39,7 @@
</p>
<p>
On the south-bound side, the core {@link org.onlab.onos.net.trivial.device.impl.
SimpleDeviceManager
DeviceManager}
On the south-bound side, the core {@link org.onlab.onos.net.trivial.device.impl.DeviceManager}
exposes a {@link org.onlab.onos.net.device.DeviceProviderRegistry} through which any number of
{@link org.onlab.onos.net.device.DeviceProvider} entities can register and in turn obtain a
{@link org.onlab.onos.net.device.DeviceProviderService}. Device and port information can then be
...
...
@@ -52,7 +52,7 @@
<p>
Within the core, the tasks of indexing, persisting and synchronizing the
global device and port state with the cluster peers falls on the
{@link org.onlab.onos.net.
trivial.device.impl.SimpleDeviceStore
DeviceStore}.
{@link org.onlab.onos.net.
device.
DeviceStore}.
</p>
<p>
...
...
Please
register
or
login
to post a comment