Package | Description |
---|---|
com.ibm.ctg.client |
Provides base classes for developing Java client applications.
|
com.ibm.ctg.client.exceptions |
Contains exceptions thrown by the Java client API classes.
|
Modifier and Type | Method and Description |
---|---|
void |
Channel.addContainer(Container container)
Adds the provided container to the channel.
|
Container |
Channel.copyContainer(java.lang.String containerName,
Channel sourceChannel)
Copy a container from another channel
|
Container |
Channel.copyContainer(java.lang.String containerName,
Channel sourceChannel,
java.lang.String newContainerName)
Copy a container from another channel
|
Container |
Channel.createContainer(java.lang.String containerName,
byte[] data)
Creates a container to hold binary data within the channel.
|
Container |
Channel.createContainer(java.lang.String containerName,
byte[] data,
int CCSID)
Creates a container to hold character data within the channel.
|
Container |
Channel.createContainer(java.lang.String containerName,
byte[] data,
java.lang.String encoding)
Creates a container to hold character data within the channel.
|
Container |
Channel.createContainer(java.lang.String containerName,
java.lang.String data)
Creates a container to hold character data within the channel.
|
Container |
Channel.createContainer(java.lang.String containerName,
java.lang.String data,
java.lang.String encoding)
Deprecated.
|
void |
Channel.deleteContainer(java.lang.String name)
Deletes the container from the channel.
|
byte[] |
Container.getBITData()
Gets binary data from a
BIT container. |
java.lang.String |
Container.getCHARData()
Gets character data from a
CHAR container. |
Container |
Channel.moveContainer(java.lang.String containerName,
Channel sourceChannel)
Move a container from another channel
|
Container |
Channel.moveContainer(java.lang.String containerName,
Channel sourceChannel,
java.lang.String newContainerName)
Move a container from another channel
|
void |
Container.setBITData(byte[] data)
Puts binary data into a
BIT container. |
void |
Container.setCHARData(java.lang.String data)
Puts character data into a
CHAR container. |
Modifier and Type | Class and Description |
---|---|
class |
ContainerBidiException
This exception is thrown if an application attempts to create a
Container with the Java
system property ctg.bidi.target.layout set to an unknown value. |
class |
ContainerExistsException
|
class |
ContainerNameException
This exception is thrown if an application attempts to create a
Container with a name that is not
valid. |
class |
ContainerNotFoundException
|
class |
ContainerTypeException
This exception is thrown when an application attempts to get the wrong type
of data from a
Container or put the
wrong type of data into it. |