Package com.zerog.ia.auto.project
Class VariableExclusion
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.VariableExclusion
-
- All Implemented Interfaces:
Referenceable
public final class VariableExclusion extends ProjectObject
Configures a variable to behave on a special way, such as encrypting or excluding from the response and log files.The variable exclusions should be added to the
Projectobject.
-
-
Constructor Summary
Constructors Constructor Description VariableExclusion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VariableExclusionOperationgetOperation()The operation to be performed on the variable.java.lang.StringgetVariableName()The variable name.voidsetOperation(VariableExclusionOperation operation)The operation to be performed on the variable.voidsetVariableName(java.lang.String variableName)The variable name.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getVariableName
public java.lang.String getVariableName()
The variable name.
-
setVariableName
public void setVariableName(java.lang.String variableName)
The variable name.
-
getOperation
public VariableExclusionOperation getOperation()
The operation to be performed on the variable.
It can be EXCLUDE_ENTIRELY to exclude the variable (name and value) from the install scripts, install logs, response files, and installer debug output, can be EXCLUDE_VALUE to exclude only the variable value from those files or can be ENCRYPT_VALUE to store the variable value encrypted.
-
setOperation
public void setOperation(VariableExclusionOperation operation)
The operation to be performed on the variable.
It can be EXCLUDE_ENTIRELY to exclude the variable (name and value) from the install scripts, install logs, response files, and installer debug output, can be EXCLUDE_VALUE to exclude only the variable value from those files or can be ENCRYPT_VALUE to store the variable value encrypted.
-
-