Interface IBundlePart
-
- All Superinterfaces:
ICICSObject
,ICICSResource
,com.ibm.cics.model.meta.ITypedObject
public interface IBundlePart extends ICICSResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IBundlePart.AvailabilityValue
Enumeration type for field AVAILSTATUSstatic class
IBundlePart.EnableStatusValue
Enumeration type for field ENABLESTATUSstatic class
IBundlePart.PartClassValue
Enumeration type for field PARTCLASS
-
Field Summary
-
Fields inherited from interface com.ibm.cics.model.ICICSResource
COPYRIGHT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IBundlePart.AvailabilityValue
getAvailability()
Getter for field AVAILSTATUSjava.lang.String
getBundle()
Getter for field BUNDLEjava.lang.String
getBundlePart()
Getter for field BUNDLEPARTIBundlePartReference
getCICSObjectReference()
IBundlePart.EnableStatusValue
getEnableStatus()
Getter for field ENABLESTATUSjava.lang.String
getMetaDataFile()
Getter for field METADATAFILEICICSType<IBundlePart>
getObjectType()
java.lang.String
getOperationName()
Getter for field OPERATIONIBundlePart.PartClassValue
getPartClass()
Getter for field PARTCLASSjava.lang.String
getPartType()
Getter for field PARTTYPEjava.lang.Long
getSeqnumber()
Getter for field SEQNUMBER-
Methods inherited from interface com.ibm.cics.model.ICICSObject
getCICSType, getName
-
Methods inherited from interface com.ibm.cics.model.ICICSResource
getCICSContainer, getCICSRelease, getRegionName
-
-
-
-
Method Detail
-
getObjectType
ICICSType<IBundlePart> getObjectType()
- Specified by:
getObjectType
in interfaceICICSObject
- Specified by:
getObjectType
in interfacecom.ibm.cics.model.meta.ITypedObject
-
getBundle
java.lang.String getBundle()
Getter for field BUNDLECICS bundle name
The name of the associated BUNDLE.
-
getBundlePart
java.lang.String getBundlePart()
Getter for field BUNDLEPARTCICS bundle part
The name of the resource in the BUNDLE.
-
getEnableStatus
IBundlePart.EnableStatusValue getEnableStatus()
Getter for field ENABLESTATUSEnable status
The status of resource in the BUNDLE.
- ENABLED - The resource is ready for use.
- DISABLED - The resource is not available.
- ENABLING - The resource is being created as part of the BUNDLE resource installation.
- DISABLING - The resource is being disabled.
- DISCARDING - A DISCARD command has been issued for the BUNDLE resource. The resource in the BUNDLE is disabled and is being discarded.
- UNUSABLE - The resource is in an unusable state.
-
getPartClass
IBundlePart.PartClassValue getPartClass()
Getter for field PARTCLASSClass
The class of the resource that is defined in the Bundle's manifest. Valid values are as follows.
- DEFINITION - The resource is defined as a definition in the manifest.
- EXPORT - The resource is defined as an export in the manifest. The resource is available to other services installed in the CICS region.
- IMPORT - The resource is defined as an import in the manifest. The resource is required by the application in the CICS region.
- ENTRYPOINT - The resource is defined as an entry point into an application.
- POLICYSCOPE - The resource defines the scope of a policy.
-
getMetaDataFile
java.lang.String getMetaDataFile()
Getter for field METADATAFILEMeta data file in bundle directory
The 1 to 255 character name of the file on zFS that describes the resource. The value is the path to the file from the root of the bundle directory.
-
getPartType
java.lang.String getPartType()
Getter for field PARTTYPEType
The 1 to 255 character resource type as a URI. For example, the XMLTRANSFORM resource has the URI http://www.ibm.com/xmlns/prod/cics/bundle/XMLTRANSFORM.
-
getSeqnumber
java.lang.Long getSeqnumber()
Getter for field SEQNUMBERBrowse sequence
This number identifies the order in which the BUNDLEPART resource is returned when using the EXEC CICS INQUIRE NEXT interface.
-
getAvailability
IBundlePart.AvailabilityValue getAvailability()
Getter for field AVAILSTATUSAvailability status
The availability of an entry point resource in the BUNDLE.
- AVAILABLE - The entry point is available.
- UNAVAILABLE - The entry point is unavailable.
- NONE - This resource is not an entry point.
-
getOperationName
java.lang.String getOperationName()
Getter for field OPERATIONOperation name
The name of the application operation for which this resource is defined as an entry point. If this field is not set, this resource is not defined as an entry point but may still be part of an application.
-
getCICSObjectReference
IBundlePartReference getCICSObjectReference()
- Specified by:
getCICSObjectReference
in interfaceICICSObject
- Specified by:
getCICSObjectReference
in interfaceICICSResource
-
-