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
Madan Jampani
2015-06-25 10:37:45 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0dbac7af9e88f3ea23a28c4e35b52424f4c5a8e4
0dbac7af
1 parent
74d32fdb
Fix javadoc warnings
Change-Id: I156c861729fd48d5e6792f810c342e1579482c04
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
0 deletions
core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java
core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java
core/api/src/main/java/org/onosproject/store/service/Versioned.java
core/store/dist/src/main/java/org/onosproject/store/consistent/impl/TransactionManager.java
web/api/src/main/java/org/onosproject/rest/resources/FlowsWebResource.java
core/api/src/main/java/org/onosproject/net/edge/EdgePortService.java
View file @
0dbac7a
...
...
@@ -45,6 +45,7 @@ public interface EdgePortService {
/**
* Returns a collection of all edge point for the specified device.
*
* @param deviceId device identifier
* @return iterable collection of all edge points for the device
*/
Iterable
<
ConnectPoint
>
getEdgePoint
(
DeviceId
deviceId
);
...
...
core/api/src/main/java/org/onosproject/net/flowobjective/ObjectiveContext.java
View file @
0dbac7a
...
...
@@ -39,6 +39,7 @@ public interface ObjectiveContext {
* Invoked when error is encountered while executing the flow objective.
*
* @param objective objective to execute
* @param error error encountered
*/
default
void
onError
(
Objective
objective
,
ObjectiveError
error
)
{
}
...
...
core/api/src/main/java/org/onosproject/store/service/Versioned.java
View file @
0dbac7a
...
...
@@ -91,6 +91,7 @@ public class Versioned<V> {
* Maps this instance into another after transforming its
* value while retaining the same version and creationTime.
* @param transformer function to mapping the value
* @param <U> value type of the returned instance
* @return mapped instance
*/
public
<
U
>
Versioned
<
U
>
map
(
Function
<
V
,
U
>
transformer
)
{
...
...
core/store/dist/src/main/java/org/onosproject/store/consistent/impl/TransactionManager.java
View file @
0dbac7a
...
...
@@ -59,6 +59,7 @@ public class TransactionManager {
* Constructs a new TransactionManager for the specified database instance.
*
* @param database database
* @param mapBuilder builder for ConsistentMap instances
*/
public
TransactionManager
(
Database
database
,
ConsistentMapBuilder
<
Long
,
Transaction
>
mapBuilder
)
{
this
.
database
=
checkNotNull
(
database
,
"database cannot be null"
);
...
...
web/api/src/main/java/org/onosproject/rest/resources/FlowsWebResource.java
View file @
0dbac7a
...
...
@@ -129,6 +129,7 @@ public class FlowsWebResource extends AbstractWebResource {
/**
* Creates a flow rule from a POST of a JSON string and attempts to apply it.
*
* @param deviceId device identifier
* @param stream input JSON
* @return status of the request - CREATED if the JSON is correct,
* BAD_REQUEST if the JSON is invalid
...
...
Please
register
or
login
to post a comment