C F G J O R T U W X

C

com.sap.mw.jco.jra - package com.sap.mw.jco.jra
 

F

findColumn(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Maps the given ResultMap column name to its ResultMap column index.
fromXML(String) - Method in interface com.sap.mw.jco.jra.XMLConverter
Parses the specified XML document and fills in those fields of the map whose names coincide with the tags in the XML document.

G

getArray(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Not implemented
getAsciiStream(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Not supported.
getBigDecimal(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a java.math.BigDecimal with full precision.
getBinaryStream(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a stream of uninterpreted bytes.
getBlob(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as a Blob object in the Java programming language.
getBoolean(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a boolean in the Java programming language.
getByte(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a byte in the Java programming language.
getBytes(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a byte array in the Java programming language.
getCharacterStream(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a java.io.Reader object.
getClob(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as a Clob object in the Java programming language.
getDate(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a java.sql.Date object in the Java programming language.
getDate(String, Calendar) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as a java.sql.Date object in the Java programming language.
getDouble(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a double in the Java programming language.
getFloat(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a float in the Java programming language.
getInt(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as an int in the Java programming language.
getLong(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a long in the Java programming language.
getObject(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as an Object in the Java programming language.
getObject(String, Map) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as an Object in the Java programming language.
getRef(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as a Ref object in the Java programming language.
getShort(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a short in the Java programming language.
getString(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a String in the Java programming language.
getTime(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Gets the value of the designated field of this ResultMap object as a java.sql.Time object in the Java programming language.
getTime(String, Calendar) - Method in interface com.sap.mw.jco.jra.ResultMap
Returns the value of the designated field of this ResultMap object as a java.sql.Time object in the Java programming language.
getTimestamp(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Not supported.
getTimestamp(String, Calendar) - Method in interface com.sap.mw.jco.jra.ResultMap
Not supported.

J

JRA - class com.sap.mw.jco.jra.JRA.
The SAP Java Resource Adapter (JRA) package converts the SAP Java Connector (JCo) into an JCA compliant resource adapter.
JRA.JmsMessageListener - interface com.sap.mw.jco.jra.JRA.JmsMessageListener.
MessageDrivenBean implementing this interface receives asynchronous message from R/3.
JRA.MapMessageListener - interface com.sap.mw.jco.jra.JRA.MapMessageListener.
MessageDrivenBean implementing this interface receives asynchronous message from R/3.

O

onMessage(Map) - Method in interface com.sap.mw.jco.jra.JRA.MapMessageListener
This message is called by EJB container when an R/3 calls asynchron to the registered Resource Adapter server.
onMessage(Message) - Method in interface com.sap.mw.jco.jra.JRA.JmsMessageListener
This message is called by EJB container when an R/3 calls asynchron to the registered Resource Adapter server.

R

readXML(Reader) - Method in interface com.sap.mw.jco.jra.XMLConverter
Reads an XML document (in UTF-8 codepage) and fills the fields of the map from the XML data
ResultMap - interface com.sap.mw.jco.jra.ResultMap.
Extension of the java.util.Map such that it has the same getters and setters like java.sql.ResultSet.

T

toXML() - Method in interface com.sap.mw.jco.jra.XMLConverter
Returns the whole record in XML format. Note: Field names in SAP system may contain characters which are illegal in XML element names.
Legal elements names however can be assembled by using the following transformation rules:
The characters 'A'-'Z', 'a'-'z', or '_' are not mapped.

U

updateAsciiStream(String, InputStream, int) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with an ascii stream value.
updateBigDecimal(String, BigDecimal) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a java.sql.BigDecimal value.
updateBinaryStream(String, InputStream, int) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a binary stream value.
updateBoolean(String, boolean) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a boolean value.
updateByte(String, byte) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a byte value.
updateBytes(String, byte[]) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a boolean value.
updateCharacterStream(String, Reader, int) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a character stream value.
updateDate(String, Date) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a java.sql.Date value.
updateDouble(String, double) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a double value.
updateFloat(String, float) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a float value.
updateInt(String, int) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with an int value.
updateLong(String, long) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a long value.
updateNull(String) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a null value.
updateObject(String, Object) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with an Object value.
updateShort(String, short) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a short value.
updateString(String, String) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a String value.
updateTime(String, Time) - Method in interface com.sap.mw.jco.jra.ResultMap
Updates the designated field with a java.sql.Time value.
updateTimestamp(String, Timestamp) - Method in interface com.sap.mw.jco.jra.ResultMap
Not supported.

W

writeXML(Writer, boolean) - Method in interface com.sap.mw.jco.jra.XMLConverter
Dump the map as a XML document to the specified stream.

X

XMLConverter - interface com.sap.mw.jco.jra.XMLConverter.
Casting on this interface provides posibility to convert JCA Records to/from XML

C F G J O R T U W X