Uses of Class
com.ibm.datapower.wamt.dataAPI.AlreadyExistsInRepositoryException

Packages that use AlreadyExistsInRepositoryException
com.ibm.datapower.wamt.clientAPI The clientAPI package encapsulates the logic for managing DataPower appliances, providing the API that should be used by a user interface to interact with one or more appliances. 
com.ibm.datapower.wamt.dataAPI Defines a collection of interfaces for data persistence that can be implemented to support a repository in various environments. 
com.ibm.datapower.wamt.dataAPI.local.filesystem Local File System Implementation of the dataAPI Interface for the IBM WebSphere Appliance Management Toolkit 
 

Uses of AlreadyExistsInRepositoryException in com.ibm.datapower.wamt.clientAPI
 

Methods in com.ibm.datapower.wamt.clientAPI that throw AlreadyExistsInRepositoryException
 ProgressContainer ManagedSet.addDevice(Device device)
          Adds a device to this managed set.
 void Device.addTag(java.lang.String name, java.lang.String value)
           
 void Domain.addTag(java.lang.String name, java.lang.String value)
           
 void Taggable.addTag(java.lang.String name, java.lang.String value)
           Add a new tag.
 Domain Device.createManagedDomain(java.lang.String domainName)
          Create a managed domain on this Device.
 void DeploymentPolicy.setPolicyExport(URLSource url, java.lang.String policyDomain, java.lang.String policyObjName)
          When calling setPolicyExport, the URLSource is a reference to the configuration blob, the domainName and policyObjectName serve as an "index" into the blob, pointing to the domain, and associated deployment policy within the blob.
 void DeploymentPolicy.setPolicyNone()
          This method is called when null parameters are passed to setDeploymentPolicy(null, null, null) in Domain
 void Device.setQuiesceTimeout(int timeout)
          Set the timeout value (in seconds) for checking the status of a domain quiesce or unquiesce operation.
 void Domain.setQuiesceTimeout(int timeout)
          Set the timeout value (in seconds) for checking the status of a domain quiesce or unquiesce operation.
 void RuntimeService.setQuiesceTimeout(int timeout)
          Set the timeout value (in seconds) for checking the status of a service quiesce or unquiesce operation.
 void Device.setSymbolicName(java.lang.String name)
          Set the symbolic name of this Device.
 void Device.setSymbolicName(java.lang.String name)
          Set the symbolic name of this Device.
 

Constructors in com.ibm.datapower.wamt.clientAPI that throw AlreadyExistsInRepositoryException
ManagedSet(java.lang.String name)
          Create a new ManagedSet that is empty and add it to the Manager.
 

Uses of AlreadyExistsInRepositoryException in com.ibm.datapower.wamt.dataAPI
 

Methods in com.ibm.datapower.wamt.dataAPI that throw AlreadyExistsInRepositoryException
 StoredDeploymentPolicy Repository.createDeploymentPolicy(StoredDomain domain, java.lang.String policyObjectName, URLSource url, java.lang.String policyDomainName, DeploymentPolicyType type)
          Creates a new policy object in the repository.
 StoredDeploymentPolicyVersion Repository.createDeploymentPolicyVersion(StoredDeploymentPolicy policy, Blob blob, java.lang.String comment, java.util.Date timestamp)
          Creates a new policy version object in the repository.
 StoredDevice Repository.createDevice(java.lang.String deviceID, java.lang.String serialNumber, java.lang.String name, DeviceType deviceType, ModelType modelType, java.lang.String hostname, java.lang.String userid, java.lang.String password, int HLMport, int guiPort, java.lang.String ampVersion)
          Create a new device object in the repository with these properties.
 StoredDomain Repository.createDomain(StoredDevice device, java.lang.String domainName)
          Create a new domain object in the repository.
 StoredDomainVersion Repository.createDomainVersion(StoredDomain versionedObject, Blob blob, java.lang.String userComment, java.util.Date timeStamp)
          Creates a new StoredDomainVersion object in the repository when the clientAPI deploys a new domain source configuration from Domain.deployConfiguration().
 StoredFirmware Repository.createFirmware(DeviceType deviceType, ModelType modelType, StringCollection strictFeatures, StringCollection nonstrictFeatures)
          Creates a new StoredFirmware object in the repository unless a matching Firmware already exists in the manager.
 StoredFirmwareVersion Repository.createFirmwareVersion(StoredFirmware versionedObject, Blob blob, java.lang.String level, java.util.Date manufactureDate, java.lang.String userComment, java.util.Date timeStamp)
          Creates a new StoredFirmwareVersion object in the repository.
 StoredManagedSet Repository.createManagedSet(java.lang.String name)
          Creates a new StoredManagedSet object in the repository.
 StoredTagImpl Repository.createTag(java.lang.String name, java.lang.String value)
           
 void StoredDevice.setSymbolicName(java.lang.String name)
          Sets the symbolic name of this StoredDevice.
 StoredDomain Repository.updateDomain(StoredDomain domain)
          Updates an existing domain object.
 

Uses of AlreadyExistsInRepositoryException in com.ibm.datapower.wamt.dataAPI.local.filesystem
 

Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem that throw AlreadyExistsInRepositoryException
 void StoredDomainImpl.addVersion(StoredDomainVersion version)
          Add a new StoredDomainVervion to this StoredDomain
 StoredDeploymentPolicyImpl RepositoryImpl.createDeploymentPolicy(StoredDomain domain, java.lang.String name, URLSource policyURL, java.lang.String policyDomainName, DeploymentPolicyType policyType)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the policy version within the containing domain element.
 StoredDeploymentPolicyVersion RepositoryImpl.createDeploymentPolicyVersion(StoredDeploymentPolicy policy, Blob blob, java.lang.String comment, java.util.Date timestamp)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the policy version within the containing deployment policy element.
 StoredDevice RepositoryImpl.createDevice(java.lang.String deviceID, java.lang.String serialNumber, java.lang.String name, DeviceType deviceType, ModelType modelType, java.lang.String hostname, java.lang.String userid, java.lang.String password, int HLMport, int guiPort, java.lang.String ampVersion)
           Note: The Local File System implementation adds a device element to the WAMT.repository.xml file during a save operation to save all information related to the device.
 StoredDomain RepositoryImpl.createDomain(StoredDevice device, java.lang.String domainName)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the domain within the containing device element.
 StoredDomainVersion RepositoryImpl.createDomainVersion(StoredDomain versionedObject, Blob blob, java.lang.String userComment, java.util.Date timeStamp)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the StoredDomainVersion within the containing Domain element.
 StoredFirmware RepositoryImpl.createFirmware(DeviceType deviceType, ModelType modelType, StringCollection strictFeatures, StringCollection nonstrictFeatures)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the firmware within the containing manager element.
 StoredFirmwareVersion RepositoryImpl.createFirmwareVersion(StoredFirmware versionedObject, Blob blob, java.lang.String level, java.util.Date manufactureDate, java.lang.String userComment, java.util.Date timeStamp)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the firmware version within the containing firmware element.
 StoredManagedSet RepositoryImpl.createManagedSet(java.lang.String name)
           Note: The Local File System implementation adds an element to the WAMT.repository.xml file during create operation to save all information related to the managed set within the containing manager element.
 StoredTagImpl RepositoryImpl.createTag(java.lang.String name, java.lang.String value)
           
 void StoredDeviceImpl.setSymbolicName(java.lang.String name)
           
 StoredDomain RepositoryImpl.updateDomain(StoredDomain domain)
           
 

Constructors in com.ibm.datapower.wamt.dataAPI.local.filesystem that throw AlreadyExistsInRepositoryException
StoredDomainImpl(java.util.Hashtable allDomains, StoredDevice device, java.lang.String domainName)
           
 



© Copyright IBM Corp. 2006, 2010 All Rights Reserved.