本文整理汇总了Java中com.vmware.vim25.AlreadyExists类的典型用法代码示例。如果您正苦于以下问题:Java AlreadyExists类的具体用法?Java AlreadyExists怎么用?Java AlreadyExists使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AlreadyExists类属于com.vmware.vim25包,在下文中一共展示了AlreadyExists类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createAlreadyExistsFault
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
/**
* 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);
}
示例2: reconfigureDvs_Task
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
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);
}
示例3: assignUserToGroup
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
public void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException
{
getVimService().assignUserToGroup(getMOR(), user, group);
}
示例4: createGroup
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
public void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException
{
getVimService().createGroup(getMOR(), group);
}
示例5: createUser
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
public void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException
{
getVimService().createUser(getMOR(), user);
}
示例6: updateUser
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
public void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException
{
getVimService().updateUser(getMOR(), user);
}
示例7: assignUserToGroup
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void assignUserToGroup(String user, String group) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
示例8: createGroup
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void createGroup(HostAccountSpec group) throws AlreadyExists, RuntimeFault, RemoteException;
示例9: createUser
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void createUser(HostAccountSpec user) throws AlreadyExists, RuntimeFault, RemoteException;
示例10: updateUser
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void updateUser(HostAccountSpec user) throws AlreadyExists, UserNotFound, RuntimeFault, RemoteException;
示例11: createCustomizationSpec
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void createCustomizationSpec(CustomizationSpecItem item) throws CustomizationFault, AlreadyExists, RuntimeFault, RemoteException;
示例12: duplicateCustomizationSpec
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void duplicateCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
示例13: renameCustomizationSpec
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void renameCustomizationSpec(String name, String newName) throws AlreadyExists, NotFound, RuntimeFault, RemoteException;
示例14: addAuthorizationRole
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
int addAuthorizationRole(String name, List<String> privIds) throws InvalidName, AlreadyExists, RuntimeFault, RemoteException;
示例15: updateAuthorizationRole
import com.vmware.vim25.AlreadyExists; //导入依赖的package包/类
void updateAuthorizationRole(int roleId, String newName, List<String> privIds) throws InvalidName, AlreadyExists, NotFound, RuntimeFault, RemoteException;