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

Packages that use DeviceType
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 
 

Uses of DeviceType in com.ibm.datapower.wamt
 

Fields in com.ibm.datapower.wamt declared as DeviceType
static DeviceType DeviceType.XA35
          A device that is an XA35.
static DeviceType DeviceType.XB50
          A device that is an XB50.
static DeviceType DeviceType.XB52
          A device that is an XB52
static DeviceType DeviceType.XC10
          A device that is an XG45
static DeviceType DeviceType.XE82
          A device that is an XE82
static DeviceType DeviceType.XG45
          A device that is an XG45
static DeviceType DeviceType.XI50
          A device that is an XI50.
static DeviceType DeviceType.XI52
          A device that is an XI52
static DeviceType DeviceType.XM70
          A device that is an XM70.
static DeviceType DeviceType.XS40
          A device that is an XS40.
 

Methods in com.ibm.datapower.wamt that return DeviceType
static DeviceType DeviceType.fromString(java.lang.String dirtyString)
          Get a DeviceType instance based on the human-readable String representation of the instance.
 

Methods in com.ibm.datapower.wamt with parameters of type DeviceType
 boolean DeviceType.isCompatibleWith(DeviceType that)
          Check if two DeviceType objects are compatible with each other.
 

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

Methods in com.ibm.datapower.wamt.amp that return DeviceType
 DeviceType DeviceMetaInfo.getDeviceType()
          Get the type of the device.
static DeviceType Utilities.getFirmwareDeviceType(Blob firmwareImage)
          Get the deviceType that this firmware image is for.
 

Constructors in com.ibm.datapower.wamt.amp with parameters of type DeviceType
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)
           
 

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

Methods in com.ibm.datapower.wamt.clientAPI that return DeviceType
 DeviceType Device.getDeviceType()
          Get the device type.
 DeviceType Firmware.getDeviceType()
          Get the DeviceType of this Firmware.
 

Methods in com.ibm.datapower.wamt.clientAPI with parameters of type DeviceType
 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 DeviceType in com.ibm.datapower.wamt.dataAPI
 

Methods in com.ibm.datapower.wamt.dataAPI that return DeviceType
 DeviceType StoredDevice.getDeviceType()
          Gets the DeviceType for this device.
 DeviceType StoredFirmware.getDeviceType()
          Gets the deviceType of this StoredFirmware.
 

Methods in com.ibm.datapower.wamt.dataAPI with parameters of type DeviceType
 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.
 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.
 

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

Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem that return DeviceType
 DeviceType StoredDeviceImpl.getDeviceType()
           Note: The Local File System implementation stores the deviceType as an attribute on the devices element in the WAMT.repository.xml file.
 DeviceType StoredFirmwareImpl.getDeviceType()
           
 

Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem with parameters of type DeviceType
 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.
 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)
           
 StoredDevice[] RepositoryImpl.getUnmanagedDevices(DeviceType desiredDeviceType)
           
 void StoredDeviceImpl.setDeviceType(DeviceType deviceType)
           
 



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