Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Simon Hunt
2016-03-31 09:16:47 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
11a2928009ab3d9d1081813d846ee3a8493af7b8
11a29280
1 parent
f133bb15
Privatize error messages.
Change-Id: Id6eb4119f677141cb827431effa428ecbd57a530
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
core/net/src/main/java/org/onosproject/net/topology/impl/TopologyManager.java
core/net/src/main/java/org/onosproject/net/topology/impl/TopologyManager.java
View file @
11a2928
...
...
@@ -65,12 +65,12 @@ public class TopologyManager
TopologyProvider
,
TopologyProviderService
>
implements
TopologyService
,
TopologyProviderRegistry
{
p
ublic
static
final
String
TOPOLOGY_NULL
=
"Topology cannot be null"
;
p
rivate
static
final
String
TOPOLOGY_NULL
=
"Topology cannot be null"
;
private
static
final
String
DEVICE_ID_NULL
=
"Device ID cannot be null"
;
private
static
final
String
CLUSTER_ID_NULL
=
"Cluster ID cannot be null"
;
private
static
final
String
CLUSTER_NULL
=
"Topology cluster cannot be null"
;
p
ublic
static
final
String
CONNECTION_POINT_NULL
=
"Connection point cannot be null"
;
p
ublic
static
final
String
LINK_WEIGHT_NULL
=
"Link weight cannot be null"
;
p
rivate
static
final
String
CONNECTION_POINT_NULL
=
"Connection point cannot be null"
;
p
rivate
static
final
String
LINK_WEIGHT_NULL
=
"Link weight cannot be null"
;
private
final
Logger
log
=
getLogger
(
getClass
());
...
...
Please
register
or
login
to post a comment