Class SetSingleIAVariable
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.actions.Action
-
- com.zerog.ia.auto.project.actions.SetSingleIAVariable
-
- All Implemented Interfaces:
DBHostable,GeneralAction,JEEHostable,OSHostable,Referenceable
public final class SetSingleIAVariable extends Action implements GeneralAction
Sets the value of a single InstallAnywhere variable.
-
-
Constructor Summary
Constructors Constructor Description SetSingleIAVariable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetEvaluateAtAssignment()Whether to evaluate the variable at assignment.java.lang.StringgetName()The name of the variable to set.java.lang.StringgetValue()The variable value.booleanisSubstituteUnknownVariable()Whether to substitute unknown variables or not.voidsetEvaluateAtAssignment(boolean evaluate)Whether to evaluate the variable at assignment.voidsetName(java.lang.String name)The name of the variable to set.voidsetSubstituteUnknownVariable(boolean substituteUnknownVariable)Whether to substitute unknown variables or not.voidsetValue(java.lang.String value)The variable value.-
Methods inherited from class com.zerog.ia.auto.project.InstallableObject
getBelongsToUninstallPhase, getRollbackEnabledCancel, getRollbackEnabledError, getRuleExpression, getRules, getRulesLogicalOperation, getTagsInInstallPiece, setBelongsToUninstallPhase, setRollbackEnabledCancel, setRollbackEnabledError, setRuleExpression, setRulesLogicalOperation, setTagsInInstallPiece
-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getValue
public java.lang.String getValue()
The variable value.
-
getName
public java.lang.String getName()
The name of the variable to set.
-
setName
public void setName(java.lang.String name)
The name of the variable to set.
-
setValue
public void setValue(java.lang.String value)
The variable value.
-
getEvaluateAtAssignment
public boolean getEvaluateAtAssignment()
Whether to evaluate the variable at assignment.
-
setEvaluateAtAssignment
public void setEvaluateAtAssignment(boolean evaluate)
Whether to evaluate the variable at assignment.
-
isSubstituteUnknownVariable
public boolean isSubstituteUnknownVariable()
Whether to substitute unknown variables or not.
-
setSubstituteUnknownVariable
public void setSubstituteUnknownVariable(boolean substituteUnknownVariable)
Whether to substitute unknown variables or not.
-
-