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
Ray Milkey
2015-02-12 09:15:44 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7b3981b529038b28997af24207e8e0ae1af5fc97
7b3981b5
1 parent
d24fafbc
Fix Javadoc warnings
Change-Id: I2975b3d7bb581d5574969037e1f99401b94ef3dc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletions
apps/demo/src/main/java/org/onosproject/demo/DemoAPI.java
core/api/src/main/java/org/onosproject/net/flow/CompletedBatchOperation.java
core/store/dist/src/main/java/org/onosproject/store/consistent/impl/DatabaseService.java
apps/demo/src/main/java/org/onosproject/demo/DemoAPI.java
View file @
7b3981b
...
...
@@ -28,7 +28,9 @@ public interface DemoAPI {
/**
* Tests flow subsystem based on the parameters supplied.
*
* @param params the test parameters
* @return JSON representation
*/
JsonNode
flowTest
(
Optional
<
JsonNode
>
params
);
...
...
core/api/src/main/java/org/onosproject/net/flow/CompletedBatchOperation.java
View file @
7b3981b
...
...
@@ -54,6 +54,7 @@ public class CompletedBatchOperation implements BatchOperationResult<FlowRule> {
*
* @param success indicates whether the completion is successful.
* @param failures set of any failures encountered
* @param deviceId device id
*/
public
CompletedBatchOperation
(
boolean
success
,
Set
<?
extends
FlowRule
>
failures
,
DeviceId
deviceId
)
{
...
...
core/store/dist/src/main/java/org/onosproject/store/consistent/impl/DatabaseService.java
View file @
7b3981b
...
...
@@ -10,9 +10,11 @@ public interface DatabaseService {
/**
* Creates a ConsistentMap.
*
* @param <K> Key type
* @param <V> value type
* @param name map name
* @param serializer serializer to use for serializing keys and values.
* @return consistent map.
*/
<
K
,
V
>
ConsistentMap
<
K
,
V
>
createConsistentMap
(
String
name
,
StoreSerializer
serializer
);
}
\ No newline at end of file
}
...
...
Please
register
or
login
to post a comment