Brian O'Connor

Updating application appIds for optical

Change-Id: I46d33f11d9e6bf6531c2ed4ac8f30c84a5c8cdbc
......@@ -156,6 +156,7 @@ public class AclManager implements AclService {
@Deactivate
public void deactivate() {
hostService.removeListener(hostListener);
// TODO can be replaced with this.clearAcl()
flowRuleService.removeFlowRulesById(appId);
aclStore.clearAcl();
log.info("Stopped");
......
......@@ -72,7 +72,7 @@ public class LambdaForwarding {
@Activate
public void activate() {
appId = coreService.registerApplication("org.onosproject.fwd");
appId = coreService.registerApplication("org.onosproject.lambdafwd");
uglyMap.put(DeviceId.deviceId("of:0000ffffffffff01"), 1);
uglyMap.put(DeviceId.deviceId("of:0000ffffffffff02"), 2);
......
......@@ -68,8 +68,7 @@ public class MplsForwarding {
@Activate
public void activate() {
appId = coreService.registerApplication("org.onosproject.testapp" +
".mplsfwd");
appId = coreService.registerApplication("org.onosproject.mplsfwd");
uglyMap.put(DeviceId.deviceId("of:0000000000000001"), 1);
uglyMap.put(DeviceId.deviceId("of:0000000000000002"), 2);
......