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-01-23 15:14:08 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f25d1353d3a0e123340b8457b2a254e3d340fa67
f25d1353
1 parent
82e50315
Fix Javadoc warnings
Change-Id: I857d8bd7d9fc0862f3c0097d3e65cbedfb997b0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java
openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java
web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java
apps/sdnip/src/main/java/org/onosproject/sdnip/config/Interface.java
View file @
f25d135
...
...
@@ -44,6 +44,7 @@ public class Interface {
* @param connectPoint the connect point this interface is mapped to
* @param ipAddresses the IP addresses for the interface
* @param macAddress the MAC address of the interface
* @param vlan VLAN identifier
*/
public
Interface
(
ConnectPoint
connectPoint
,
Set
<
InterfaceIpAddress
>
ipAddresses
,
...
...
openflow/api/src/main/java/org/onosproject/openflow/controller/OpenFlowSwitch.java
View file @
f25d135
...
...
@@ -144,6 +144,8 @@ public interface OpenFlowSwitch {
/**
* Identifies the channel used to communicate with the switch.
*
* @return string representation of the connection to the device
*/
public
String
channelId
();
...
...
web/api/src/main/java/org/onosproject/rest/TopologyWebResource.java
View file @
f25d135
...
...
@@ -80,6 +80,7 @@ public class TopologyWebResource extends AbstractWebResource {
/**
* Gets details for a topology cluster for a REST GET operation.
*
* @param clusterId id of the cluster to query
* @return topology cluster details
*/
@GET
...
...
@@ -101,6 +102,7 @@ public class TopologyWebResource extends AbstractWebResource {
/**
* Gets devices for a topology cluster for a REST GET operation.
*
* @param clusterId id of the cluster to query
* @return topology cluster devices
*/
@GET
...
...
@@ -131,6 +133,7 @@ public class TopologyWebResource extends AbstractWebResource {
/**
* Gets links for a topology cluster for a REST GET operation.
*
* @param clusterId id of the cluster to query
* @return topology cluster links
*/
@GET
...
...
@@ -181,6 +184,8 @@ public class TopologyWebResource extends AbstractWebResource {
/**
* Gets the broadcast flag of a connect point for a REST GET operation.
*
* @param connectPointString string representation of the connect point to query.
* Format is deviceid:portnumber
* @return JSON representation of true if the connect point is broadcast,
* false otherwise
*/
...
...
@@ -202,6 +207,8 @@ public class TopologyWebResource extends AbstractWebResource {
/**
* Gets the infrastructure flag of a connect point for a REST GET operation.
*
* @param connectPointString string representation of the connect point to query.
* Format is deviceid:portnumber
* @return JSON representation of true if the connect point is broadcast,
* false otherwise
*/
...
...
Please
register
or
login
to post a comment