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-20 11:22:32 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
144eec52079e561ee32969c13ab4a1c7e69cf466
144eec52
1 parent
2bfbad2d
Fix Javadoc warnings
Change-Id: I366f2b9f3c11645a3392e0689619bfbad7a9eedd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
apps/calendar/src/main/java/org/onosproject/calendar/BandwidthCalendarResource.java
core/api/src/main/java/org/onosproject/store/service/TransactionContext.java
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
apps/calendar/src/main/java/org/onosproject/calendar/BandwidthCalendarResource.java
View file @
144eec5
...
...
@@ -135,7 +135,7 @@ public class BandwidthCalendarResource extends BaseResource {
* @param srcPort the source port (-1 if src/dest is a host)
* @param dstPort the destination port (-1 if src/dest is a host)
* @param bandwidth the bandwidth (mbps) requirement for the path
* @return
@return
Intent state, "INSTALLED", if successful,
* @return Intent state, "INSTALLED", if successful,
* server error message or "FAILED" if failed to modify any direction intent
*/
@javax
.
ws
.
rs
.
Path
(
"/{intentKey}/{src}/{dst}/{srcPort}/{dstPort}/{bandwidth}"
)
...
...
core/api/src/main/java/org/onosproject/store/service/TransactionContext.java
View file @
144eec5
...
...
@@ -56,9 +56,11 @@ public interface TransactionContext {
/**
* Creates a new transactional map.
* @param <K> key type
* @param <V> value type
* @param mapName name of the transactional map.
* @param serializer serializer to use for encoding/decoding keys and vaulues.
* @return new Transactional Map.
*/
<
K
,
V
>
TransactionalMap
<
K
,
V
>
createTransactionalMap
(
String
mapName
,
Serializer
serializer
);
}
\ No newline at end of file
}
...
...
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
View file @
144eec5
...
...
@@ -363,6 +363,7 @@ public class IntentManager
* Generate a {@link FlowRuleOperations} instance from the specified intent data.
*
* @param current intent data stored in the store
* @param pending intent data that is pending
* @return flow rule operations
*/
// TODO: make this non-public due to short term hack for ONOS-1051
...
...
Please
register
or
login
to post a comment