Class PlugInUAction
- java.lang.Object
-
- All Implemented Interfaces:
DBHostable
,GeneralAction
,JEEHostable
,OSHostable
,Referenceable
public final class PlugInUAction extends ExecuteCustomCodeUninstall
Close extension of CustomAction that represents custom actions loaded through the plugin method (see Plugin and PlugInDetector) Will be initialized with information from the properties file inside a plugin jar. This will set the main class, descriptive name, and initial values for the advertised properties. This information will then become "part of the object" meaning it will be serialized and can be changed. The advertised properties become variables that are set when the custom action is run.
-
-
Constructor Summary
Constructors Constructor Description PlugInUAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getComment()
The comment of the plugin.java.util.Vector<KeyedData>
getVariables()
The variables shared with the plugin code.void
setComment(java.lang.String comment)
The comment of the plugin.void
setVariables(java.util.Vector<KeyedData> variables)
The variables shared with the plugin code.-
Methods inherited from class com.zerog.ia.auto.project.actions.ExecuteCustomCode
getClassFullName, getDialogLabel, getRunsAfterFilesDeleted, getShowIndeterminateDialog, getShowPleaseWaitPanel, getUniqueName, setClassFullName, setDialogLabel, setRunsAfterFilesDeleted, setShowIndeterminateDialog, setShowPleaseWaitPanel, setUniqueName
-
Methods inherited from class com.zerog.ia.auto.project.actions.CustomCode
getArchivesSigned, getDependencies, getSourceFile, setArchivesSigned, setDependencies, setSourceFile
-
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
-
getComment
public java.lang.String getComment()
The comment of the plugin.
-
setComment
public void setComment(java.lang.String comment)
The comment of the plugin.
-
getVariables
public java.util.Vector<KeyedData> getVariables()
The variables shared with the plugin code.
-
setVariables
public void setVariables(java.util.Vector<KeyedData> variables)
The variables shared with the plugin code.
-
-