Skip to content

Commit

Permalink
openstack-quantum: addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aplowe committed Jun 1, 2012
1 parent c9de23a commit e5127ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ public interface NetworkClient {
Reference create(String name);

/**
* Updates the symbolic name of a network
* Adjusts the symbolic name of a network
*
* @param id the id of the Network to modify
* @param name the new name for the Network
*/
Boolean rename(String id, String name);
boolean rename(String id, String name);

/**
* Deletes the specified network
*/
Boolean delete(String id);
boolean delete(String id);
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ public interface PortClient {
/**
* Updates the state of a port
*/
Boolean updateState(String id, Port.State state);
boolean updateState(String id, Port.State state);

/**
* Deletes a port from a network
*/
Boolean delete(String id);
boolean delete(String id);

/**
* Returns the attachment for the specified port.
Expand All @@ -89,10 +89,10 @@ public interface PortClient {
/**
* Plugs an attachment into the specified port
*/
Boolean plugAttachment(String portId, String attachmentId);
boolean plugAttachment(String portId, String attachmentId);

/**
* Unplugs the attachment currently plugged into the specified port
*/
Boolean unplugAttachment(String portId);
boolean unplugAttachment(String portId);
}

0 comments on commit e5127ff

Please sign in to comment.