Class ExpandArchive
- 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.ExpandArchive
-
- All Implemented Interfaces:
OSHostable
,Referenceable
public final class ExpandArchive extends Action implements OSHostable
Expands a ZIP file (.zip, .jar, .war, .ear) or decodes a Mac Binary file (.bin) on the end user's system.
-
-
Constructor Summary
Constructors Constructor Description ExpandArchive()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDestinationName()
The dstination whete the file should be expanded to.java.lang.String
getExistingFile()
The existing file that will be expanded.java.lang.String
getInstalledFile()
The bundled file that will be expanded.FileType
getSourceFileType()
Whether the file to be expanded will be a bundled or existing one.void
setDestinationName(java.lang.String DestinationName)
The dstination whete the file should be expanded to.void
setExistingFile(java.lang.String path)
The existing file that will be expanded.void
setInstalledFile(java.lang.String path)
The bundled file that will be expanded.void
setSourceFileType(FileType sourceFileType)
Whether the file to be expanded will be a bundled or existing one.-
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
-
getSourceFileType
public FileType getSourceFileType()
Whether the file to be expanded will be a bundled or existing one.
-
setSourceFileType
public void setSourceFileType(FileType sourceFileType)
Whether the file to be expanded will be a bundled or existing one.
-
getExistingFile
public java.lang.String getExistingFile()
The existing file that will be expanded.
-
setExistingFile
public void setExistingFile(java.lang.String path)
The existing file that will be expanded.
-
getDestinationName
public java.lang.String getDestinationName()
The dstination whete the file should be expanded to.
-
setDestinationName
public void setDestinationName(java.lang.String DestinationName)
The dstination whete the file should be expanded to.
-
setInstalledFile
public void setInstalledFile(java.lang.String path)
The bundled file that will be expanded.
-
getInstalledFile
public java.lang.String getInstalledFile()
The bundled file that will be expanded.
-
-