Committed by
Gerrit Code Review
Remove public from definition in interface
Change-Id: I7554f04a230a7a5cc85dda4cd6b41171a523fd80
Showing
3 changed files
with
5 additions
and
5 deletions
... | @@ -33,5 +33,5 @@ public interface ConfigGetter extends HandlerBehaviour { | ... | @@ -33,5 +33,5 @@ public interface ConfigGetter extends HandlerBehaviour { |
33 | * @param type the type of configuration to get (i.e. running). | 33 | * @param type the type of configuration to get (i.e. running). |
34 | * @return string representation of the configuration or an error string. | 34 | * @return string representation of the configuration or an error string. |
35 | */ | 35 | */ |
36 | - public String getConfiguration(String type); | 36 | + String getConfiguration(String type); |
37 | } | 37 | } | ... | ... |
... | @@ -37,7 +37,7 @@ public interface InterfaceConfig extends HandlerBehaviour { | ... | @@ -37,7 +37,7 @@ public interface InterfaceConfig extends HandlerBehaviour { |
37 | * @deprecated in 1.7.0 Hummingbird release - use of addAccessMode() instead | 37 | * @deprecated in 1.7.0 Hummingbird release - use of addAccessMode() instead |
38 | */ | 38 | */ |
39 | @Deprecated | 39 | @Deprecated |
40 | - public boolean addAccessInterface(DeviceId deviceId, String intf, VlanId vlanId); | 40 | + boolean addAccessInterface(DeviceId deviceId, String intf, VlanId vlanId); |
41 | 41 | ||
42 | /** | 42 | /** |
43 | * Adds an access interface to a VLAN. | 43 | * Adds an access interface to a VLAN. |
... | @@ -167,7 +167,7 @@ public interface InterfaceConfig extends HandlerBehaviour { | ... | @@ -167,7 +167,7 @@ public interface InterfaceConfig extends HandlerBehaviour { |
167 | * deviceId as parameter instead | 167 | * deviceId as parameter instead |
168 | */ | 168 | */ |
169 | @Deprecated | 169 | @Deprecated |
170 | - public List<DeviceInterfaceDescription> getInterfaces(DeviceId deviceId); | 170 | + List<DeviceInterfaceDescription> getInterfaces(DeviceId deviceId); |
171 | 171 | ||
172 | /** | 172 | /** |
173 | * Provides the interfaces configured on a device. | 173 | * Provides the interfaces configured on a device. | ... | ... |
... | @@ -30,7 +30,7 @@ public interface DistributedPrimitive { | ... | @@ -30,7 +30,7 @@ public interface DistributedPrimitive { |
30 | /** | 30 | /** |
31 | * Type of distributed primitive. | 31 | * Type of distributed primitive. |
32 | */ | 32 | */ |
33 | - public enum Type { | 33 | + enum Type { |
34 | /** | 34 | /** |
35 | * Map with strong consistency semantics. | 35 | * Map with strong consistency semantics. |
36 | */ | 36 | */ |
... | @@ -80,7 +80,7 @@ public interface DistributedPrimitive { | ... | @@ -80,7 +80,7 @@ public interface DistributedPrimitive { |
80 | /** | 80 | /** |
81 | * Status of distributed primitive. | 81 | * Status of distributed primitive. |
82 | */ | 82 | */ |
83 | - public enum Status { | 83 | + enum Status { |
84 | 84 | ||
85 | /** | 85 | /** |
86 | * Signifies a state wherein the primitive is operating correctly and is capable of meeting the advertised | 86 | * Signifies a state wherein the primitive is operating correctly and is capable of meeting the advertised | ... | ... |
-
Please register or login to post a comment