Java 类com.vmware.vim25.AlreadyExists 实例源码

项目:photon-model    文件:ObjectFactory.java   
/**
 * Create an instance of {@link JAXBElement }{@code <}{@link AlreadyExists }{@code >}}
 * 
 */
@XmlElementDecl(namespace = "urn:pbm", name = "AlreadyExistsFault")
public JAXBElement<AlreadyExists> createAlreadyExistsFault(AlreadyExists value) {
    return new JAXBElement<AlreadyExists>(_AlreadyExistsFault_QNAME, AlreadyExists.class, null, value);
}
项目:vijava    文件:DistributedVirtualSwitch.java   
public Task reconfigureDvs_Task(DVSConfigSpec spec) throws DvsNotAuthorized, DvsFault, ConcurrentAccess, DuplicateName, InvalidState, InvalidName, NotFound, AlreadyExists, LimitExceeded, ResourceInUse, ResourceNotAvailable, RuntimeFault, RemoteException
{
    ManagedObjectReference taskMor = getVimService().reconfigureDvs_Task(getMOR(), spec);
    return new Task(getServerConnection(), taskMor);
}
项目:vijava    文件:HostLocalAccountManager.java   
public void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException 
{
    getVimService().assignUserToGroup(getMOR(), user, group);
}
项目:vijava    文件:HostLocalAccountManager.java   
public void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException 
{
    getVimService().createGroup(getMOR(), group);
}
项目:vijava    文件:HostLocalAccountManager.java   
public void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException 
{
    getVimService().createUser(getMOR(), user);
}
项目:vijava    文件:HostLocalAccountManager.java   
public void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException 
{
    getVimService().updateUser(getMOR(), user);
}
项目:jcloud-vsphere    文件:HostLocalAccountManagerApi.java   
void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:HostLocalAccountManagerApi.java   
void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:HostLocalAccountManagerApi.java   
void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:HostLocalAccountManagerApi.java   
void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:CustomizationSpecManagerApi.java   
void createCustomizationSpec(CustomizationSpecItem item) throws CustomizationFault, AlreadyExists, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:CustomizationSpecManagerApi.java   
void duplicateCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:CustomizationSpecManagerApi.java   
void renameCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:AuthorizationManagerApi.java   
int addAuthorizationRole(String name, List<String> privIds) throws InvalidName, AlreadyExists, RuntimeFault, RemoteException;
项目:jcloud-vsphere    文件:AuthorizationManagerApi.java   
void updateAuthorizationRole(int roleId, String newName, List<String> privIds) throws InvalidName, AlreadyExists, NotFound, RuntimeFault, RemoteException;