Uses of Class
com.ibm.datapower.wamt.StringCollection

Packages that use StringCollection
com.ibm.datapower.wamt This package contains classes that are used by the clientAPI and amp packages. 
com.ibm.datapower.wamt.amp The Appliance Management Protocol (AMP) provides an abstraction layer for message and command communication between the Manager and the DataPower devices. 
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 
com.ibm.datapower.wamt.soma   
 

Uses of StringCollection in com.ibm.datapower.wamt
 

Fields in com.ibm.datapower.wamt declared as StringCollection
static StringCollection StringCollection.EMPTY
          A representation of any empty collection.
 

Methods in com.ibm.datapower.wamt that return StringCollection
static StringCollection StringCollection.createCollectionFromDisplayName(java.lang.String s)
          Create a StringCollection instance based on a string created by getDisplayName.
static StringCollection StringCollection.createCollectionFromString(java.lang.String s, char delimiter)
          Create a StringCollection instance based on a string created by marshalToString.
 

Methods in com.ibm.datapower.wamt with parameters of type StringCollection
 boolean StringCollection.isSupersetOf(StringCollection that)
          Check if one collection (this) is a superset of another collection (that).
 

Constructors in com.ibm.datapower.wamt with parameters of type StringCollection
StringCollection(StringCollection clonable)
          Create a new collection of Strings that is a clone.
StringCollection(StringCollection collection1, StringCollection collection2)
          Create a new StringCollection that is a merged instance of two other collections.
 

Uses of StringCollection in com.ibm.datapower.wamt.amp
 

Methods in com.ibm.datapower.wamt.amp that return StringCollection
 StringCollection DeviceMetaInfo.getFeatureLicenses()
          Get the list features that this device is licensed for.
 StringCollection InterDependentServiceCollection.getFilesToBeOverwritten()
          Get a file list of the interdependent service to be overwritten.
static StringCollection Utilities.getNonStrictFirmwareFeatures(Blob firmwareImage)
          Get the list of non-strict features (libraries) that are included in this firmware image.
 StringCollection ReferencedObjectCollection.getReferencedFiles()
          Get file list in the referenced ConfigObject
static StringCollection Utilities.getStrictFirmwareFeatures(Blob firmwareImage)
          Get the list of strict features (libraries) that are included in this firmware image.
 

Methods in com.ibm.datapower.wamt.amp with parameters of type StringCollection
 SubscriptionResponseCode Commands.subscribeToDevice(DeviceContext device, java.lang.String subscriptionId, StringCollection topics, java.net.URL callback)
          Create a subscription so that the device will inform the callback when a configuration change or related action happens on the specified device.
 void Commands.unsubscribeFromDevice(DeviceContext device, java.lang.String subscriptionID, StringCollection topics)
          Delete a subscription that was created with Commands.subscribeToDevice(DeviceContext, String, StringCollection, URL).
 

Constructors in com.ibm.datapower.wamt.amp with parameters of type StringCollection
DeviceMetaInfo(java.lang.String deviceName, java.lang.String serialNumber, java.lang.String currentAMPVersion, ModelType modelType, java.lang.String hardwareOptions, int guiPort, DeviceType deviceType, java.lang.String firmwareLevel, StringCollection featureLicenses)
          Construct a new DeviceMetaInfo object.
DeviceMetaInfo(java.lang.String deviceName, java.lang.String serialNumber, java.lang.String currentAMPVersion, ModelType modelType, java.lang.String hardwareOptions, int guiPort, DeviceType deviceType, java.lang.String firmwareLevel, StringCollection featureLicenses, int[] supportedCommands)
           
DeviceMetaInfo(java.lang.String deviceName, java.lang.String serialNumber, java.lang.String currentAMPVersion, ModelType modelType, java.lang.String hardwareOptions, int guiPort, DeviceType deviceType, java.lang.String firmwareLevel, StringCollection featureLicenses, int[] supportedCommands, java.lang.String secureBackup)
           
InterDependentServiceCollection(java.util.List<RuntimeService> serviceList, java.util.List<ConfigObject> objectToBeOverwritten, StringCollection fileList)
          Construct a new InterDependentServiceCollection object which is returned only by Commands#getInterDependentServices(DeviceContext, String, byte[], ConfigObject[] in general.
ReferencedObjectCollection(java.util.HashMap<java.lang.String,java.util.ArrayList<ConfigObject>> referencedObject, StringCollection fileList, java.lang.String primaryKey)
          Construct a new ReferencedObjectCollection object which is returned only by {@link Commands#getReferencedObjects(DeviceContext, String , String , String ) in general.
 

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

Methods in com.ibm.datapower.wamt.clientAPI that return StringCollection
 StringCollection Device.getAllDomainNames()
          Get a list of all the domains on the specified device, including those that are not managed.
 StringCollection Device.getFeatureLicenses()
          Get the list of Strings that represent the feature entitlements (licensed features) for this device.
 StringCollection ServiceDeployment.getFilesToBeOverwritten()
          Get a file list to be overwritten.
 StringCollection Firmware.getNonstrictFeatures()
          Get the non-strict features that are in this Firmware.
 StringCollection Firmware.getStrictFeatures()
          Get the strict features that are in this Firmware.
 

Methods in com.ibm.datapower.wamt.clientAPI with parameters of type StringCollection
 Firmware Manager.getBestFirmware(DeviceType deviceType, ModelType modelType, StringCollection deviceFeatures, java.lang.String level)
          Get the best Firmware that is suitable for the specified deviceType, modelType, and device features.
 Firmware Manager.getFirmware(DeviceType deviceType, ModelType modelType, StringCollection strictFeatures, StringCollection nonstrictFeatures)
          For a specified device profile (deviceType, modelType, strictFeatures, nonStrictFeatures), get the Firmware object that would match that device profile.
 Device[] Manager.getUnmanagedDevices(DeviceType desiredDeviceType, ModelType desiredModelType, StringCollection desiredFeatures)
          Gets the list of known devices in the manager that are not assigned to a ManagedSet.
 

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

Methods in com.ibm.datapower.wamt.dataAPI that return StringCollection
 StringCollection StoredDevice.getFeatureLicenses()
          Gets the list of Strings that represent the feature licenses for this device.
 StringCollection StoredFirmware.getNonstrictFeatures()
          Gets the StringCollection that represents the nonstrict features supported by this firmware.
 StringCollection StoredFirmware.getStrictFeatures()
          Gets the StringCollection that represents the strict features supported by this firmware.
 

Methods in com.ibm.datapower.wamt.dataAPI with parameters of type StringCollection
 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.
 StoredFirmware Repository.getFirmware(DeviceType deviceType, ModelType modelType, StringCollection strictFeatures, StringCollection nonstrictFeatures)
          Gets an existing firmware with the specified attributes from the repository.
 void StoredDevice.setFeatureLicenses(StringCollection featureLicenses)
          Sets the list of Strings that represent the feature licenses for this device.
 

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

Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem that return StringCollection
 StringCollection StoredDeviceImpl.getFeatureLicenses()
           Note: The Local File System implementation stores the getFeatureLicenses as an attribute on the device element in the WAMT.repository.xml file.
 StringCollection StoredFirmwareImpl.getNonstrictFeatures()
           
 StringCollection StoredFirmwareImpl.getStrictFeatures()
           
 

Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem with parameters of type StringCollection
 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.
 StoredFirmware RepositoryImpl.getFirmware(DeviceType deviceType, ModelType modelType, StringCollection strictFeatures, StringCollection nonstrictFeatures)
           
 void StoredDeviceImpl.setFeatureLicenses(StringCollection featureLicenses)
           
 

Uses of StringCollection in com.ibm.datapower.wamt.soma
 

Methods in com.ibm.datapower.wamt.soma that return StringCollection
 StringCollection Status.getNames()
          Get all names of status of SOMA
 



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