Package | Description |
---|---|
org.bbaw.pdr.allies.client |
Client features of the PDR-ALLIES interface.
|
Modifier and Type | Method and Description |
---|---|
PDRType |
Identifier.getType()
Returns the PDR type.
|
PDRType |
IDRange.getType()
Returns PDR Type of objects in range.
|
static PDRType |
Identifier.typeFromString(java.lang.String prefix)
Translates the given prefix string to the corresponding PDR type.
|
static PDRType |
PDRType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDRType[] |
PDRType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
DataParts.createGetObjects(PDRType type,
int instance,
int project,
int min,
int max)
Creates SOAP request document for method: getObjects.
|
static java.lang.String |
DataParts.createGetOccupiedObjectIDRanges(PDRType type,
int instance,
int project,
int min,
int max)
Creates SOAP request document for method: getOccupiedObjectIDRanges.
|
static java.util.Vector<java.lang.String> |
Utilities.getObjects(PDRType type,
int instance,
int project,
int lowerBound,
int upperBound)
Returns all available PDR objects within given range.
|
static java.util.List<IDRange> |
Utilities.getOccupiedObjectIDRanges(PDRType type,
int instance,
int project,
int lowerBound,
int upperBound)
Returns occupied ID ranges in given boundaries.
|
Constructor and Description |
---|
Identifier(PDRType type,
int instance,
int project,
int object)
Constructor with single parts of the ID.
|
IDRange(PDRType type,
int instance,
int project,
int lowerBound,
int upperBound)
Constructor with all necessary parameters.
|