Thomas Vachuska
Committed by Gerrit Code Review

Fixed app id registration for the ACL manager.

Change-Id: Ibdd33a4b0ed781e66a3f573c0658b1446cc97462
...@@ -146,7 +146,7 @@ public class AclManager implements AclService { ...@@ -146,7 +146,7 @@ public class AclManager implements AclService {
146 146
147 @Activate 147 @Activate
148 public void activate() { 148 public void activate() {
149 - appId = coreService.registerApplication("org.onos.acl"); 149 + appId = coreService.registerApplication("org.onosproject.acl");
150 hostService.addListener(hostListener); 150 hostService.addListener(hostListener);
151 idGenerator = coreService.getIdGenerator("acl-ids"); 151 idGenerator = coreService.getIdGenerator("acl-ids");
152 AclRule.bindIdGenerator(idGenerator); 152 AclRule.bindIdGenerator(idGenerator);
......