Package com.zerog.ia.auto.project
Class MergeModuleAdvertisedVariable
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.MergeModuleAdvertisedVariable
-
- All Implemented Interfaces:
Referenceable
public final class MergeModuleAdvertisedVariable extends ProjectObject
Defines a variable that the merge module needs from the parent installer or will be passed back from the merge module to a parent installer.
-
-
Constructor Summary
Constructors Constructor Description MergeModuleAdvertisedVariable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getComment()
The variable comment.java.lang.String
getName()
The variable name.AdvertisedVariablePhase
getPhase()
The install phase which the variable belongs to.AdvertisedVariableType
getType()
The type of variable.java.lang.String
getValue()
The variable value.void
setComment(java.lang.String comment)
The variable comment.void
setName(java.lang.String name)
The variable name.void
setPhase(AdvertisedVariablePhase phase)
The install phase which the variable belongs to.void
setType(AdvertisedVariableType type)
The type of variable.void
setValue(java.lang.String value)
The variable value.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
The variable name.
-
setName
public void setName(java.lang.String name)
The variable name.
-
getValue
public java.lang.String getValue()
The variable value.
-
setValue
public void setValue(java.lang.String value)
The variable value.
-
getType
public AdvertisedVariableType getType()
The type of variable. It can be INPUT, OUTPUT, STDERR or STDOUT.
-
setType
public void setType(AdvertisedVariableType type)
The type of variable. It can be INPUT, OUTPUT, STDERR or STDOUT.
-
getComment
public java.lang.String getComment()
The variable comment.
-
setComment
public void setComment(java.lang.String comment)
The variable comment.
-
getPhase
public AdvertisedVariablePhase getPhase()
The install phase which the variable belongs to. It can be INSTALL, PRE_INSTALL or POST_INSTALL.
-
setPhase
public void setPhase(AdvertisedVariablePhase phase)
The install phase which the variable belongs to. It can be INSTALL, PRE_INSTALL or POST_INSTALL.
-
-