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
Pavlin Radoslavov
2014-11-25 19:08:19 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
119fd5c5a5e4db45d87269bf99b5d18588361449
119fd5c5
1 parent
20be3e6b
Javadoc fixes.
Change-Id: Ic2cef19a6f1af9916c8615c9319cc122d9da5383
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
1 deletions
core/api/src/main/java/org/onlab/onos/net/intent/LinkCollectionIntent.java
core/api/src/main/java/org/onlab/onos/net/resource/LinkResourceStore.java
core/net/src/main/java/org/onlab/onos/core/impl/BlockAllocatorBasedIdGenerator.java
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilder.java
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilderVer10.java
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilderVer13.java
core/api/src/main/java/org/onlab/onos/net/intent/LinkCollectionIntent.java
View file @
119fd5c
...
...
@@ -90,6 +90,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent {
* @param treatment action
* @param links traversed links
* @param egressPoints Set of egress point
* @param constraints the constraints
* @throws NullPointerException {@code path} is null
*/
public
LinkCollectionIntent
(
ApplicationId
appId
,
...
...
core/api/src/main/java/org/onlab/onos/net/resource/LinkResourceStore.java
View file @
119fd5c
...
...
@@ -43,6 +43,7 @@ public interface LinkResourceStore {
* Releases resources.
*
* @param allocations resources to be released
* @return the link resource event
*/
LinkResourceEvent
releaseResources
(
LinkResourceAllocations
allocations
);
...
...
core/net/src/main/java/org/onlab/onos/core/impl/BlockAllocatorBasedIdGenerator.java
View file @
119fd5c
...
...
@@ -15,7 +15,7 @@ public class BlockAllocatorBasedIdGenerator implements IdGenerator {
/**
* Constructs an ID generator which use {@link IdBlockAllocator} as backend.
*
* @param allocator
* @param allocator
the ID block allocator to use
*/
protected
BlockAllocatorBasedIdGenerator
(
IdBlockAllocator
allocator
)
{
this
.
allocator
=
allocator
;
...
...
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilder.java
View file @
119fd5c
...
...
@@ -72,6 +72,7 @@ public abstract class FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
* @return the new flow mod builder
*/
public
static
FlowModBuilder
builder
(
FlowRule
flowRule
,
...
...
@@ -92,6 +93,7 @@ public abstract class FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected
FlowModBuilder
(
FlowRule
flowRule
,
OFFactory
factory
,
Optional
<
Long
>
xid
)
{
this
.
factory
=
factory
;
...
...
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilderVer10.java
View file @
119fd5c
...
...
@@ -62,6 +62,7 @@ public class FlowModBuilderVer10 extends FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected
FlowModBuilderVer10
(
FlowRule
flowRule
,
OFFactory
factory
,
Optional
<
Long
>
xid
)
{
...
...
providers/openflow/flow/src/main/java/org/onlab/onos/provider/of/flow/impl/FlowModBuilderVer13.java
View file @
119fd5c
...
...
@@ -70,6 +70,7 @@ public class FlowModBuilderVer13 extends FlowModBuilder {
*
* @param flowRule the flow rule to transform into a flow mod
* @param factory the OpenFlow factory to use to build the flow mod
* @param xid the transaction ID
*/
protected
FlowModBuilderVer13
(
FlowRule
flowRule
,
OFFactory
factory
,
Optional
<
Long
>
xid
)
{
super
(
flowRule
,
factory
,
xid
);
...
...
Please
register
or
login
to post a comment