Class ExpandTarArchive
- 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.ExpandTarArchive
-
- All Implemented Interfaces:
OSHostable,Referenceable
public final class ExpandTarArchive extends Action implements OSHostable
Expands a TAR Archive to the disk
-
-
Constructor Summary
Constructors Constructor Description ExpandTarArchive()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDestinationName()The destination where the file should be expanded to.java.lang.StringgetExistingFilePath()java.lang.StringgetInstalledFile()The bundled file that will be expanded.booleangetShouldUninstall()longgetSizeOfArchive()FileTypegetSourceFileType()Whether the file to be expanded will be a bundled or existing one.java.lang.StringgetSourceName()java.lang.StringgetSourcePath()voidsetDestinationName(java.lang.String DestinationName)The destination where the file should be expanded to.voidsetExistingFilePath(java.lang.String ExistingFilePath)voidsetInstalledFile(java.lang.String path)The bundled file that will be expanded.voidsetShouldUninstall(boolean ShouldUninstall)voidsetSizeOfArchive(long SizeOfArchive)voidsetSourceFileType(FileType sourceFileType)Whether the file to be expanded will be a bundled or existing one.voidsetSourceName(java.lang.String SourceName)voidsetSourcePath(java.lang.String SourcePath)-
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.
-
getSourceName
public java.lang.String getSourceName()
-
setSourceName
public void setSourceName(java.lang.String SourceName)
-
getSourcePath
public java.lang.String getSourcePath()
-
setSourcePath
public void setSourcePath(java.lang.String SourcePath)
-
getExistingFilePath
public java.lang.String getExistingFilePath()
-
setExistingFilePath
public void setExistingFilePath(java.lang.String ExistingFilePath)
-
getShouldUninstall
public boolean getShouldUninstall()
-
setShouldUninstall
public void setShouldUninstall(boolean ShouldUninstall)
-
getSizeOfArchive
public long getSizeOfArchive()
-
setSizeOfArchive
public void setSizeOfArchive(long SizeOfArchive)
-
getDestinationName
public java.lang.String getDestinationName()
The destination where the file should be expanded to.
-
setDestinationName
public void setDestinationName(java.lang.String DestinationName)
The destination where 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.
-
-