Class i5OSLibrary
- 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.i5os.i5OSLibrary
 
 
 
 
- 
- All Implemented Interfaces:
- OSHostable,- Referenceable
 
 public final class i5OSLibrary extends Action implements OSHostable Enables libraries to be restored on an i5/OS system. At build time, the Save Library (SAVLIB) command is called to save the library from the i5/OS build system. At install time, the Restore Library (RSTLIB) command is called to restore the library to the target system.
- 
- 
Constructor SummaryConstructors Constructor Description i5OSLibrary()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAdditionalRestoreParameters()Returns the additional parameters to pass to the RSTLIB command at install time.java.lang.StringgetAdditionalSaveParameters()Returns the additional parameters to pass to the SAVLIB command at build time.java.lang.StringgetDestinationLibrary()Returns the name of the library on the target system.java.lang.StringgetSourceLibrary()Returns the name of the library available on the i5/OS build system.java.lang.StringgetTargetRelease()Returns the minimum supported release level of the operating system on which you intend to restore the library.voidsetAdditionalRestoreParameters(java.lang.String additionalRestoreParameters)Defines the additional parameters to pass to the RSTLIB command at install time.voidsetAdditionalSaveParameters(java.lang.String additionalSaveParameters)Defines the additional parameters to pass to the SAVLIB command at build time.voidsetDestinationLibrary(java.lang.String s)Defines the name of the library on the target system.voidsetSourceLibrary(java.lang.String sourceLibrary)Defines the name of the library available on the i5/OS build system.voidsetTargetRelease(java.lang.String targetRelease)Defines the minimum supported release level of the operating system on which you intend to restore the library.- 
Methods inherited from class com.zerog.ia.auto.project.InstallableObjectgetBelongsToUninstallPhase, getRollbackEnabledCancel, getRollbackEnabledError, getRuleExpression, getRules, getRulesLogicalOperation, getTagsInInstallPiece, setBelongsToUninstallPhase, setRollbackEnabledCancel, setRollbackEnabledError, setRuleExpression, setRulesLogicalOperation, setTagsInInstallPiece
 - 
Methods inherited from class com.zerog.ia.auto.project.ProjectObjectequals, getReferenceID, hashCode, setReferenceID
 
- 
 
- 
- 
- 
Method Detail- 
getSourceLibrarypublic java.lang.String getSourceLibrary() Returns the name of the library available on the i5/OS build system.
 - 
setSourceLibrarypublic void setSourceLibrary(java.lang.String sourceLibrary) Defines the name of the library available on the i5/OS build system.
 - 
getTargetReleasepublic java.lang.String getTargetRelease() Returns the minimum supported release level of the operating system on which you intend to restore the library. This value must be *CURRENT, *PRV, or a six-character release value in the format VxRxMx, where x is a digit (0-9).
 - 
setTargetReleasepublic void setTargetRelease(java.lang.String targetRelease) Defines the minimum supported release level of the operating system on which you intend to restore the library. This value must be *CURRENT, *PRV, or a six-character release value in the format VxRxMx, where x is a digit (0-9).
 - 
getDestinationLibrarypublic java.lang.String getDestinationLibrary() Returns the name of the library on the target system. This setting specifies whether the library contents are restored to the same library from which they were saved or to a different library.
 - 
setDestinationLibrarypublic void setDestinationLibrary(java.lang.String s) Defines the name of the library on the target system. This setting specifies whether the library contents are restored to the same library from which they were saved or to a different library.
 - 
getAdditionalRestoreParameterspublic java.lang.String getAdditionalRestoreParameters() Returns the additional parameters to pass to the RSTLIB command at install time.
 - 
setAdditionalRestoreParameterspublic void setAdditionalRestoreParameters(java.lang.String additionalRestoreParameters) Defines the additional parameters to pass to the RSTLIB command at install time.
 - 
getAdditionalSaveParameterspublic java.lang.String getAdditionalSaveParameters() Returns the additional parameters to pass to the SAVLIB command at build time.
 - 
setAdditionalSaveParameterspublic void setAdditionalSaveParameters(java.lang.String additionalSaveParameters) Defines the additional parameters to pass to the SAVLIB command at build time.
 
- 
 
-