|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ModelType | |
---|---|
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 ModelType in com.ibm.datapower.wamt |
---|
Fields in com.ibm.datapower.wamt declared as ModelType | |
---|---|
static ModelType |
ModelType.TYPE_4195
A model that is 4195 |
static ModelType |
ModelType.TYPE_5725
A model that is a virtual appliance that will specifically run on VMWare |
static ModelType |
ModelType.TYPE_7198
A model that is a 7198. |
static ModelType |
ModelType.TYPE_7199
A model that is a 7199. |
static ModelType |
ModelType.TYPE_9001
A model that is a 9001. |
static ModelType |
ModelType.TYPE_9002
A model that is a 9002. |
static ModelType |
ModelType.TYPE_9003
A model that is a 9003. |
static ModelType |
ModelType.TYPE_9005
A special model type used ONLY for firmware that indicates the firmware supports a 7198 or 7199. |
static ModelType |
ModelType.TYPE_9235
A model that is a 9235. |
static ModelType |
ModelType.TYPE_OTHER
A special model type used ONLY for firmware that indicates the firmware supports a 9001 or 9002. |
static ModelType |
ModelType.TYPE_Virtual
A model that is a generic virtual appliance that will run on any hypervisor |
Methods in com.ibm.datapower.wamt that return ModelType | |
---|---|
static ModelType |
ModelType.fromString(java.lang.String modelTypeString)
Get a ModelType instance based on the String representation of the instance returned by getDisplayName |
Methods in com.ibm.datapower.wamt with parameters of type ModelType | |
---|---|
boolean |
ModelType.isCompatibleWith(ModelType that)
Check if two ModelType objects are compatible with each other. |
Uses of ModelType in com.ibm.datapower.wamt.amp |
---|
Methods in com.ibm.datapower.wamt.amp that return ModelType | |
---|---|
static ModelType |
Utilities.getFirmwareModelType(Blob firmwareImage)
Get the modelType that this firmware image is for. |
ModelType |
DeviceMetaInfo.getModelType()
Get the version of the Datapower hardware |
Constructors in com.ibm.datapower.wamt.amp with parameters of type ModelType | |
---|---|
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 ModelType in com.ibm.datapower.wamt.clientAPI |
---|
Methods in com.ibm.datapower.wamt.clientAPI that return ModelType | |
---|---|
ModelType[] |
Firmware.getCompatibleModelTypes()
Get all ModelTypes that are compatible with the ModelType of this Firmware. |
ModelType |
Device.getModelType()
Get the device's model type. |
ModelType |
Firmware.getModelType()
Get the ModelType of this Firmware. |
static ModelType |
Device.getModelTypeFromDeviceID(java.lang.String deviceID)
Determine the ModelType from the String returned from
Commands.getDeviceMetaInfo(DeviceContext) . |
Methods in com.ibm.datapower.wamt.clientAPI with parameters of type ModelType | |
---|---|
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 ModelType in com.ibm.datapower.wamt.dataAPI |
---|
Methods in com.ibm.datapower.wamt.dataAPI that return ModelType | |
---|---|
ModelType |
StoredDevice.getModelType()
Gets the ModelType for this device. |
ModelType |
StoredFirmware.getModelType()
Gets the modelType of this StoredFirmware. |
Methods in com.ibm.datapower.wamt.dataAPI with parameters of type ModelType | |
---|---|
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 ModelType in com.ibm.datapower.wamt.dataAPI.local.filesystem |
---|
Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem that return ModelType | |
---|---|
ModelType |
StoredDeviceImpl.getModelType()
|
ModelType |
StoredFirmwareImpl.getModelType()
|
Methods in com.ibm.datapower.wamt.dataAPI.local.filesystem with parameters of type ModelType | |
---|---|
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)
|
void |
StoredDeviceImpl.setModelType(ModelType modelType)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |