Class CustomCode
- 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.CustomCode
-
- All Implemented Interfaces:
Referenceable
- Direct Known Subclasses:
CustomCodePanelConsole
,ExecuteCustomCode
public abstract class CustomCode extends Action
A super class for all custom code based actions.
-
-
Constructor Summary
Constructors Constructor Description CustomCode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getArchivesSigned()
whether or not archives signedjava.util.Vector<DependencyProperty>
getDependencies()
TheVector
ofDependencyProperty
with the list of Jar/Zip files dependencies.java.lang.String
getSourceFile()
The path to custom code JAR file.void
setArchivesSigned(boolean ArchivesSigned)
whether or not archives signedvoid
setDependencies(java.util.Vector<DependencyProperty> dependencies)
TheVector
ofDependencyProperty
with the list of Jar/Zip files dependencies.void
setSourceFile(java.lang.String path)
The path to custom code JAR file.-
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
-
setDependencies
public void setDependencies(java.util.Vector<DependencyProperty> dependencies)
TheVector
ofDependencyProperty
with the list of Jar/Zip files dependencies.
-
getDependencies
public java.util.Vector<DependencyProperty> getDependencies()
TheVector
ofDependencyProperty
with the list of Jar/Zip files dependencies.
-
getArchivesSigned
public boolean getArchivesSigned()
whether or not archives signed
-
setArchivesSigned
public void setArchivesSigned(boolean ArchivesSigned)
whether or not archives signed
-
setSourceFile
public void setSourceFile(java.lang.String path)
The path to custom code JAR file.
-
getSourceFile
public java.lang.String getSourceFile()
The path to custom code JAR file.
-
-