|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WSStreamableRecord
This interface provides a CCI Record that implements the Streamable interface. Some JCA resource adapters, like CICS ECI, require this. This record only supports containing a single string (such as a CICS COMMAREA); if your JCA interaction requires anything more sophisticated than this, you'll need to either use a Record implementation provided by the JCA resource adapter, or write one yourself. This interface also allows you to set the encoding used for the String, with the default being ASCII if not specified.
An implementation of this interface can be obtained via the createCCIStreamableRecord method of WSProceduralPushDownHelper.
Field Summary | |
---|---|
static java.lang.String |
COPYRIGHT
|
Method Summary | |
---|---|
java.lang.String |
getEncoding()
Gets the encoding associated with this record's String value. |
java.lang.String |
getValue()
Gets the String value associated with this record. |
void |
setEncoding(java.lang.String encoding)
Sets the encoding associated with this record's String value. |
void |
setValue(java.lang.String value)
Sets the String value associated with this record. |
Methods inherited from interface javax.resource.cci.Record |
---|
clone, equals, getRecordName, getRecordShortDescription, hashCode, setRecordName, setRecordShortDescription |
Methods inherited from interface javax.resource.cci.Streamable |
---|
read, write |
Field Detail |
---|
static final java.lang.String COPYRIGHT
Method Detail |
---|
java.lang.String getValue()
void setValue(java.lang.String value)
value
- The String to be stored in this recordjava.lang.String getEncoding()
void setEncoding(java.lang.String encoding)
encoding
- The encoding to use for this record's String value
|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |