diff --git a/client/tomcatconf/commands.properties.in b/client/tomcatconf/commands.properties.in index d2828493f34..002da875cae 100644 --- a/client/tomcatconf/commands.properties.in +++ b/client/tomcatconf/commands.properties.in @@ -245,8 +245,6 @@ listS3s=1 addImageStore=1 listImageStores=1 deleteImageStore=1 -enableImageStore=1 - #### host commands addHost=3 diff --git a/server/src/com/cloud/server/ManagementServerImpl.java b/server/src/com/cloud/server/ManagementServerImpl.java index af77ba5645f..ee0fbdb1c52 100755 --- a/server/src/com/cloud/server/ManagementServerImpl.java +++ b/server/src/com/cloud/server/ManagementServerImpl.java @@ -466,11 +466,11 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe public ManagementServerImpl() { setRunLevel(ComponentLifecycle.RUN_LEVEL_APPLICATION_MAINLOOP); } - + public List getUserAuthenticators() { return _userAuthenticators; } - + public void setUserAuthenticators(List authenticators) { _userAuthenticators = authenticators; } @@ -2301,6 +2301,9 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe cmdList.add(AssignToGlobalLoadBalancerRuleCmd.class); cmdList.add(RemoveFromGlobalLoadBalancerRuleCmd.class); cmdList.add(ListStorageProvidersCmd.class); + cmdList.add(AddImageStoreCmd.class); + cmdList.add(ListImageStoresCmd.class); + cmdList.add(DeleteImageStoreCmd.class); return cmdList; } diff --git a/tools/apidoc/gen_toc.py b/tools/apidoc/gen_toc.py index e41e883066a..07ef0f58f96 100644 --- a/tools/apidoc/gen_toc.py +++ b/tools/apidoc/gen_toc.py @@ -138,6 +138,9 @@ known_categories = { 'addIpToNic': 'Nic', 'removeIpFromNic': 'Nic', 'listNics':'Nic', + 'addImageStore': 'Image Store', + 'listImageStores': 'Image Store', + 'deleteImageStore': 'Image Store', }