X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fforwardingrulesmanager%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fforwardingrulesmanager%2FPortGroupProvider.java;h=dc4f13f497f5e5a0fce7b8035b71cd40512834b1;hp=7b53eb0b8aa5b157555c87577eed9b9c27cf1eb0;hb=e7342a8b0e42dcaccfa0a3af8bb70ece3f9d2189;hpb=b8bb7db7c6133e00046e85ead70426eb1e05184d diff --git a/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroupProvider.java b/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroupProvider.java index 7b53eb0b8a..dc4f13f497 100644 --- a/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroupProvider.java +++ b/opendaylight/forwardingrulesmanager/api/src/main/java/org/opendaylight/controller/forwardingrulesmanager/PortGroupProvider.java @@ -30,7 +30,7 @@ public interface PortGroupProvider { * New PortGroupConfig object created by user Configuration. * @return true if successful. false otherwise. */ - public boolean createPortGroupConfig(PortGroupConfig config); + boolean createPortGroupConfig(PortGroupConfig config); /** * This method is invoked by the Controller towards the Provider when an @@ -40,7 +40,7 @@ public interface PortGroupProvider { * Existing Port Group Configuration deleted by the user. * @return true if successful. false otherwise. */ - public boolean deletePortGroupConfig(PortGroupConfig config); + boolean deletePortGroupConfig(PortGroupConfig config); /** * Returns the complete mapping database corresponds to a PortGroup @@ -54,7 +54,7 @@ public interface PortGroupProvider { * @return Database of Switch-Id to PortGroup mapping that corresponds to * the Port Group User Configuration. */ - public Map getPortGroupData(PortGroupConfig config); + Map getPortGroupData(PortGroupConfig config); /** * Returns PortGroup data for a given Switch and user Configuration. Its the @@ -70,7 +70,7 @@ public interface PortGroupProvider { * @return PortGroup data for a given Openflow switch. * @see PortGroup */ - public PortGroup getPortGroupData(PortGroupConfig config, long matrixSwitchId); + PortGroup getPortGroupData(PortGroupConfig config, long matrixSwitchId); /** * Registers a Listener for Port Group membership changes based on Custom @@ -80,7 +80,7 @@ public interface PortGroupProvider { * A Controller module that listens to events from the Custom * Port Grouping Application. */ - public void registerPortGroupChange(PortGroupChangeListener listener); + void registerPortGroupChange(PortGroupChangeListener listener); /** * Application returns an Usage string for the Match Criteria User @@ -91,7 +91,7 @@ public interface PortGroupProvider { * * @return Usage string. */ - public String getApplicationDrivenMatchCriteriaUsage(); + String getApplicationDrivenMatchCriteriaUsage(); /** * Returns the name of the Custom Application that implements @@ -99,7 +99,7 @@ public interface PortGroupProvider { * * @return Provider Name */ - public String getProviderName(); + String getProviderName(); /** * Controller uses this method to check with the Provider supports the @@ -109,5 +109,5 @@ public interface PortGroupProvider { * @return true if the Provider supports the matchCriteria String. false * otherwise. */ - public boolean isMatchCriteriaSupported(String matchCriteria); + boolean isMatchCriteriaSupported(String matchCriteria); }