Package oracle.as.scheduler
Class JobSetStepProperty
java.lang.Object
oracle.as.scheduler.JobSetStepProperty
Defines the JobSet step properties.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.Not supported.static final StringDeprecated.Replaced bySystemProperty.SELECT_STATEstatic final StringDeprecated.Not supported. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetNames()Returns the names of the step properties.static ParameterInfogetStepPropInfo(String name) Returns the detailed information for the step property identified by the given name.static ObjectgetTypedObject(String propName, String val) Returns the given value converted into the appropriate type for the given property name.static booleanisStepProp(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_STATESpecifies 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
nullif 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
nullif the property name is not a valid JobSetStepProperty name. - Throws:
ValidationException- ifvalhas an unsupported datype or a conversion error occurs.
-