All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.workflow.api.ProgramData
- public interface ProgramData
- Version:
- 3.2.0.2
-
description()
- Returns the description of
the implementing program.
-
icon()
- Returns the icon associated with the
implementing program.
-
implementations()
- Returns the
implementation definitions of the program.
-
inContainer()
- Returns the input container
of the program.
-
isEmpty()
- Indicates whether no program data
information is available yet.
-
isUnattended()
- States whether the program
can run unattended.
-
outContainer()
- Returns the output container
of the program.
isEmpty
public abstract boolean isEmpty() throws FmcException
- Indicates whether no program data
information is available yet.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
description
public abstract String description() throws FmcException
- Returns the description of
the implementing program.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
icon
public abstract String icon() throws FmcException
- Returns the icon associated with the
implementing program.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
implementations
public abstract ImplementationData[] implementations() throws FmcException
- Returns the
implementation definitions of the program.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
inContainer
public abstract ReadOnlyContainer inContainer() throws FmcException
- Returns the input container
of the program.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
isUnattended
public abstract boolean isUnattended() throws FmcException
- States whether the program
can run unattended.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
outContainer
public abstract ReadWriteContainer outContainer() throws FmcException
- Returns the output container
of the program.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
All Packages Class Hierarchy This Package Previous Next Index