Add new api to gen_toc.py to avoid api-doc build error.

This commit is contained in:
Min Chen 2013-04-11 11:34:33 -07:00
parent 1c448cd6e3
commit cd2d066fda
3 changed files with 8 additions and 4 deletions

View File

@ -245,8 +245,6 @@ listS3s=1
addImageStore=1
listImageStores=1
deleteImageStore=1
enableImageStore=1
#### host commands
addHost=3

View File

@ -466,11 +466,11 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
public ManagementServerImpl() {
setRunLevel(ComponentLifecycle.RUN_LEVEL_APPLICATION_MAINLOOP);
}
public List<UserAuthenticator> getUserAuthenticators() {
return _userAuthenticators;
}
public void setUserAuthenticators(List<UserAuthenticator> 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;
}

View File

@ -138,6 +138,9 @@ known_categories = {
'addIpToNic': 'Nic',
'removeIpFromNic': 'Nic',
'listNics':'Nic',
'addImageStore': 'Image Store',
'listImageStores': 'Image Store',
'deleteImageStore': 'Image Store',
}