Package oracle.as.scheduler
Class JobSetStepProperty
java.lang.Object
oracle.as.scheduler.JobSetStepProperty
Defines the JobSet step properties.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Deprecated.Not supported.static final String
Deprecated.Replaced bySystemProperty.SELECT_STATE
static final String
Deprecated.Not supported. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetNames()
Returns the names of the step properties.static ParameterInfo
getStepPropInfo
(String name) Returns the detailed information for the step property identified by the given name.static Object
getTypedObject
(String propName, String val) Returns the given value converted into the appropriate type for the given property name.static boolean
isStepProp
(String name) Determines if the given name is a JobSetStepProperty.
-
Field Details
-
SELECT_OUTPUT
Deprecated.Not supported.Not supported.- See Also:
-
SELECT_STATE
Deprecated.Replaced bySystemProperty.SELECT_STATE
Specifies whether the step's state should be included when determining the JobSet's state.The property datatype is
BOOLEAN
.- See Also:
-
STATE_EVALUATOR
Deprecated.Not supported.Not supported.Defines the state evaluator class for the step.
The property datatype is
STRING
.- See Also:
-
-
Constructor Details
-
JobSetStepProperty
public JobSetStepProperty()
-
-
Method Details
-
getNames
Returns the names of the step properties.- Returns:
- Set of the names of all step properties.
-
isStepProp
Determines if the given name is a JobSetStepProperty.- Returns:
- true if the name is a valid property name; else false.
-
getStepPropInfo
Returns the detailed information for the step property identified by the given name.- Returns:
- the information about the property. This will be
null
if no such step property exists.
-
getTypedObject
Returns the given value converted into the appropriate type for the given property name.- Parameters:
propName
- name of the property.val
- the value to convert into the correct type for the property.- Returns:
- an Object that has the correct type for the given property,
or
null
if the property name is not a valid JobSetStepProperty name. - Throws:
ValidationException
- ifval
has an unsupported datype or a conversion error occurs.
-