Committed by
Gerrit Code Review
[ONOS-4159] PCE Web GUI implementation:ServerSideChanges
Change-Id: Ief54166eb940952876e82003adfe215132c240ba
Showing
3 changed files
with
5 additions
and
1 deletions
... | @@ -43,6 +43,11 @@ | ... | @@ -43,6 +43,11 @@ |
43 | <artifactId>onos-cli</artifactId> | 43 | <artifactId>onos-cli</artifactId> |
44 | <version>${project.version}</version> | 44 | <version>${project.version}</version> |
45 | </dependency> | 45 | </dependency> |
46 | + <dependency> | ||
47 | + <groupId>org.onosproject</groupId> | ||
48 | + <artifactId>onos-app-pce</artifactId> | ||
49 | + <version>${project.version}</version> | ||
50 | + </dependency> | ||
46 | </dependencies> | 51 | </dependencies> |
47 | 52 | ||
48 | <properties> | 53 | <properties> | ... | ... |
This diff is collapsed. Click to expand it.
... | @@ -63,7 +63,6 @@ public class PceWebTopovOverlay extends UiTopoOverlay { | ... | @@ -63,7 +63,6 @@ public class PceWebTopovOverlay extends UiTopoOverlay { |
63 | public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) { | 63 | public void modifyDeviceDetails(PropertyPanel pp, DeviceId deviceId) { |
64 | 64 | ||
65 | pp.title(MY_TITLE); | 65 | pp.title(MY_TITLE); |
66 | - log.info("Modify device details called."); | ||
67 | 66 | ||
68 | DeviceService deviceService = AbstractShellCommand.get(DeviceService.class); | 67 | DeviceService deviceService = AbstractShellCommand.get(DeviceService.class); |
69 | 68 | ... | ... |
-
Please register or login to post a comment