X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fswitchmanager%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fswitchmanager%2FISwitchManager.java;h=9ac0b5055f071de56ad2afd87e0e65bb8ef3da29;hb=6fda9993ad4fb9e0ac911543bbd87b7cd0eb1b0f;hp=e14ffdffeb26bebb2af160d4dfbd4587ebd23d70;hpb=d12862677a44f5bf66f8319a8f0e871c35797326;p=controller.git diff --git a/opendaylight/switchmanager/api/src/main/java/org/opendaylight/controller/switchmanager/ISwitchManager.java b/opendaylight/switchmanager/api/src/main/java/org/opendaylight/controller/switchmanager/ISwitchManager.java index e14ffdffeb..9ac0b5055f 100644 --- a/opendaylight/switchmanager/api/src/main/java/org/opendaylight/controller/switchmanager/ISwitchManager.java +++ b/opendaylight/switchmanager/api/src/main/java/org/opendaylight/controller/switchmanager/ISwitchManager.java @@ -359,29 +359,19 @@ public interface ISwitchManager { public byte[] getNodeMAC(Node node); /** - * Return true if the host Refresh procedure (by sending ARP request probes - * to known hosts) is enabled. By default, the procedure is enabled. This can - * be overwritten by OSFI CLI "hostRefresh off". - * - * @return true if it is enabled; false if it's disabled. - */ - public boolean isHostRefreshEnabled(); - - /** - * Return host refresh retry count - * - * @return host refresh retry count + * Create a Name/Tier/Bandwidth Property object based on given property name + * and value. Other property types are not supported yet. + * + * @param propName + * Name of the Property specified by + * {@link org.opendaylight.controller.sal.core.Property} and its + * extended classes + * @param propValue + * Value of the Property specified by + * {@link org.opendaylight.controller.sal.core.Property} and its + * extended classes + * @return {@link org.opendaylight.controller.sal.core.Property} */ - public int getHostRetryCount(); - - /** - * Create a Name/Tier/Bandwidth Property object based on given property - * name and value. Other property types are not supported yet. - * - * @param propName Name of the Property specified by {@link org.opendaylight.controller.sal.core.Property} and its extended classes - * @param propValue Value of the Property specified by {@link org.opendaylight.controller.sal.core.Property} and its extended classes - * @return {@link org.opendaylight.controller.sal.core.Property} - */ public Property createProperty(String propName, String propValue); /**