T - The type of object that this container holdspublic interface WritableContainer<T> extends Container
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
COPYRIGHT
Copyright
|
| Modifier and Type | Method and Description |
|---|---|
WritableContainer<T> |
append(T t)
Append the object to the end of the container.
|
WritableContainer<T> |
put(T t)
Overwrite the container contents with the supplied object.
|
static final java.lang.String COPYRIGHT
WritableContainer<T> append(T t) throws CICSConditionException, java.io.IOException
EXEC CICS API commands:
EXEC CICS PUT CONTAINERt - object to appendCICSConditionException - If there's a problem in CICS
RespCodes:
java.io.IOException - If there's a problem serializing the objectWritableContainer<T> put(T t) throws CICSConditionException, java.io.IOException
EXEC CICS API commands:
EXEC CICS PUT CONTAINERt - object to putCICSConditionException - If there's a problem in CICS
RespCodes:
java.io.IOException - If there's a problem serializing the object