X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fforwardingrulesmanager%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fforwardingrulesmanager%2FPortGroup.java;h=b05091a4d7d4fe421dfa33c2f356d4274fcda837;hb=400baaf54049cf4d6159e7c03b7c6e724eaa5aa5;hp=5acd3e2ebc28638a656eb7c1705aea2e4f790e3a;hpb=f6fdaa2c3a3542264c4fa0e92e9ca14ed6f26b66;p=controller.git diff --git a/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroup.java b/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroup.java index 5acd3e2ebc..b05091a4d7 100644 --- a/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroup.java +++ b/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroup.java @@ -14,11 +14,9 @@ import java.util.Set; /** * PortGroup is a simple data-structure to represent any arbitrary group of * ports on a Switch (that is represented using its switch-ID). - * + * * PortGroup is used by PortGroupProvider application to signal a set of ports * that represent a configured PortGroupConfig. - * - * */ public class PortGroup { private long matrixSwitchId; @@ -26,7 +24,7 @@ public class PortGroup { /** * PortGroup Constructor using Switch and Ports. - * + * * @param matrixSwitchId * Switch Id that represents an openflow Switch * @param ports @@ -40,7 +38,7 @@ public class PortGroup { /** * PortGroup Constructor using Switch. - * + * * @param matrixSwitchId * Switch-Id that represents an openflow Switch */ @@ -51,7 +49,7 @@ public class PortGroup { /** * Returns the switchId representing the Switch that makes this PortGroup. - * + * * @return long switchId */ public long getMatrixSwitchId() { @@ -60,7 +58,7 @@ public class PortGroup { /** * Assigns a Switch to this PortGroup - * + * * @param matrixSwitchId * Switch-Id that represents an openflow Switch */ @@ -70,7 +68,7 @@ public class PortGroup { /** * Returns the Set of Ports that makes this PortGroup. - * + * * @return Set of short values representing openflow port-ids. */ public Set getPorts() { @@ -79,7 +77,7 @@ public class PortGroup { /** * Assigns a set of openflow ports to this PortGroup - * + * * @param ports * Set of short values representing openflow port-ids. */ @@ -89,7 +87,7 @@ public class PortGroup { /** * Adds a port to this PortGroup - * + * * @param port * Short value of a openflow port. */ @@ -99,7 +97,6 @@ public class PortGroup { @Override public String toString() { - return "PortGroup [matrixSwitchId=" + matrixSwitchId + ", ports=" - + ports + "]"; + return "PortGroup [matrixSwitchId=" + matrixSwitchId + ", ports=" + ports + "]"; } }