Simon Hunt

Privatize error messages.

Change-Id: Id6eb4119f677141cb827431effa428ecbd57a530
...@@ -65,12 +65,12 @@ public class TopologyManager ...@@ -65,12 +65,12 @@ public class TopologyManager
65 TopologyProvider, TopologyProviderService> 65 TopologyProvider, TopologyProviderService>
66 implements TopologyService, TopologyProviderRegistry { 66 implements TopologyService, TopologyProviderRegistry {
67 67
68 - public static final String TOPOLOGY_NULL = "Topology cannot be null"; 68 + private static final String TOPOLOGY_NULL = "Topology cannot be null";
69 private static final String DEVICE_ID_NULL = "Device ID cannot be null"; 69 private static final String DEVICE_ID_NULL = "Device ID cannot be null";
70 private static final String CLUSTER_ID_NULL = "Cluster ID cannot be null"; 70 private static final String CLUSTER_ID_NULL = "Cluster ID cannot be null";
71 private static final String CLUSTER_NULL = "Topology cluster cannot be null"; 71 private static final String CLUSTER_NULL = "Topology cluster cannot be null";
72 - public static final String CONNECTION_POINT_NULL = "Connection point cannot be null"; 72 + private static final String CONNECTION_POINT_NULL = "Connection point cannot be null";
73 - public static final String LINK_WEIGHT_NULL = "Link weight cannot be null"; 73 + private static final String LINK_WEIGHT_NULL = "Link weight cannot be null";
74 74
75 private final Logger log = getLogger(getClass()); 75 private final Logger log = getLogger(getClass());
76 76
......