Package | Description |
---|---|
com.ibm.ctg.client |
Provides base classes for developing Java client applications.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Container |
Channel.getContainer(java.lang.String name)
This method will examine the current containers within this channel
looking for a container with the name supplied.
|
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
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Container> |
Channel.getContainers()
Get a collection of all of the containers held within the channel
|
Modifier and Type | Method and Description |
---|---|
void |
Channel.addContainer(Container container)
Adds the provided container to the channel.
|