|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--bea.jolt.JoltServiceBase
JoltServiceBase is the common base class for JoltRemoteService and JoltServiceRequest
| Constructor Summary | |
JoltServiceBase()
|
|
| Method Summary | |
void |
addByte(java.lang.String name,
byte val)
Add a byte value occurrence of an item referred by its name. |
void |
addBytes(java.lang.String name,
byte[] val,
int len)
Add a byte-array value occurrence of an item referred by its name. |
void |
addDouble(java.lang.String name,
double val)
Add a double value occurrence of an item referred by its name. |
void |
addFloat(java.lang.String name,
float val)
Add a float value occurrence of an item referred by its name. |
void |
addInt(java.lang.String name,
int val)
Add a int value occurrence of an item referred by its name. |
void |
addShort(java.lang.String name,
short val)
Add a short value occurrence of an item referred by its name. |
void |
addString(java.lang.String name,
java.lang.String val)
Add a string value occurrence of an item referred by its name. |
void |
delete(java.lang.String name)
Delete the first instance of an item referred by its name. |
void |
deleteItem(java.lang.String name,
int itemNo)
Delete a particular occurrence of an item referred by its name. |
byte |
getByteDef(java.lang.String name,
byte def)
Get the byte value of the first occurrence of the item. |
byte |
getByteItemDef(java.lang.String name,
int itemNo,
byte def)
Get the byte value of an occurrence of the item. |
byte[] |
getBytesDef(java.lang.String name,
byte[] def)
Get the byte-array value of the first occurrence of the item. |
byte[] |
getBytesItemDef(java.lang.String name,
int itemNo,
byte[] def)
Get the byte-array value of an occurrence of the item. |
double |
getDoubleDef(java.lang.String name,
double def)
Get the double value of the first occurrence of the item. |
double |
getDoubleItemDef(java.lang.String name,
int itemNo,
double def)
Get the double value of an occurrence of the item. |
float |
getFloatDef(java.lang.String name,
float def)
Get the float value of the first occurrence of the item. |
float |
getFloatItemDef(java.lang.String name,
int itemNo,
float def)
Get the float value of an occurrence of the item. |
int |
getIntDef(java.lang.String name,
int def)
Get the int value of the first occurrence of the item. |
int |
getIntItemDef(java.lang.String name,
int itemNo,
int def)
Get the int value of an occurrence of the item. |
int |
getObufIntItemDef(java.lang.String name,
int itemNo,
int def)
|
int |
getObufOccurrenceCount(java.lang.String propertyname)
|
java.lang.String |
getObufStringItemDef(java.lang.String name,
int itemNo,
java.lang.String def)
|
int |
getOccurrenceCount(java.lang.String name)
Get the occurrence count of an item referred by its name. |
short |
getShortDef(java.lang.String name,
short def)
Get the short value of the first occurrence of the item. |
short |
getShortItemDef(java.lang.String name,
int itemNo,
short def)
Get the short value of an occurrence of the item. |
java.lang.String |
getStringDef(java.lang.String name,
java.lang.String def)
Get the string value of the first occurrence of the item. |
java.lang.String |
getStringItemDef(java.lang.String name,
int itemNo,
java.lang.String def)
Get the string value of an occurrence of the item. |
void |
setByte(java.lang.String name,
byte val)
Set or change the byte value of the first occurrence of an item referred by its name. |
void |
setByteItem(java.lang.String name,
int itemNo,
byte val)
Set or change the byte value of a particular item referred by its name. |
void |
setBytes(java.lang.String name,
byte[] val,
int len)
Set or change the byte-array value of the first occurrence of an item referred by its name. |
void |
setBytesItem(java.lang.String name,
int itemNo,
byte[] val,
int len)
Set or change the byte-array value of a particular item referred by its name. |
void |
setDouble(java.lang.String name,
double val)
Set or change the double value of the first occurrence of an item referred by its name. |
void |
setDoubleItem(java.lang.String name,
int itemNo,
double val)
Set or change the double value of a particular item referred by its name. |
void |
setFloat(java.lang.String name,
float val)
Set or change the float value of the first occurrence of an item referred by its name. |
void |
setFloatItem(java.lang.String name,
int itemNo,
float val)
Set or change the float value of a particular item referred by its name. |
void |
setInt(java.lang.String name,
int val)
Set or change the int value of the first occurrence of an item referred by its name. |
void |
setIntItem(java.lang.String name,
int itemNo,
int val)
Set or change the int value of a particular item referred by its name. |
void |
setShort(java.lang.String name,
short val)
Set or change the short value of the first occurrence of an item referred by its name. |
void |
setShortItem(java.lang.String name,
int itemNo,
short val)
Set or change the short value of a particular item referred by its name. |
void |
setString(java.lang.String name,
java.lang.String val)
Set or change the string value of the first occurrence of an item referred by its name. |
void |
setStringItem(java.lang.String name,
int itemNo,
java.lang.String val)
Set or change the string value of a particular item referred by its name. |
| Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
| Constructor Detail |
public JoltServiceBase()
| Method Detail |
public void addByte(java.lang.String name,
byte val)
name - The name of the item.val - The byte value.
public void addShort(java.lang.String name,
short val)
name - The name of the item.val - The short value.
public void addInt(java.lang.String name,
int val)
name - The name of the item.val - The int value.
public void addFloat(java.lang.String name,
float val)
name - The name of the item.val - The float value.
public void addDouble(java.lang.String name,
double val)
name - The name of the item.val - The double value.
public void addString(java.lang.String name,
java.lang.String val)
name - The name of the item.val - The string value.
public void addBytes(java.lang.String name,
byte[] val,
int len)
name - The name of the item.val - The byte-array value.
public void setByte(java.lang.String name,
byte val)
name - The name of the item.val - The byte value.
public void setShort(java.lang.String name,
short val)
name - The name of the item.val - The short value.
public void setInt(java.lang.String name,
int val)
name - The name of the item.val - The int value.
public void setFloat(java.lang.String name,
float val)
name - The name of the item.val - The float value.
public void setDouble(java.lang.String name,
double val)
name - The name of the item.val - The double value.
public void setString(java.lang.String name,
java.lang.String val)
name - The name of the item.val - The string value.
public void setBytes(java.lang.String name,
byte[] val,
int len)
name - The name of the item.val - The byte-array value.
public void setByteItem(java.lang.String name,
int itemNo,
byte val)
name - The name of the item.itemNo - The occurrence number.val - The byte value.
public void setShortItem(java.lang.String name,
int itemNo,
short val)
name - The name of the item.itemNo - The occurrence number.val - The short value.
public void setIntItem(java.lang.String name,
int itemNo,
int val)
name - The name of the item.itemNo - The occurrence number.val - The int value.
public void setFloatItem(java.lang.String name,
int itemNo,
float val)
name - The name of the item.itemNo - The occurrence number.val - The float value.
public void setDoubleItem(java.lang.String name,
int itemNo,
double val)
name - The name of the item.itemNo - The occurrence number.val - The double value.
public void setStringItem(java.lang.String name,
int itemNo,
java.lang.String val)
name - The name of the item.itemNo - The occurrence number.val - The string value.
public void setBytesItem(java.lang.String name,
int itemNo,
byte[] val,
int len)
name - The name of the item.itemNo - The occurrence number.val - The byte-array value.public void delete(java.lang.String name)
name - The name of the item.
public void deleteItem(java.lang.String name,
int itemNo)
name - The name of the item.itemNo - The occurrence number.public int getOccurrenceCount(java.lang.String name)
name - The name of the item.
public byte getByteDef(java.lang.String name,
byte def)
name - The name fo the item.def - The default byte value.
public short getShortDef(java.lang.String name,
short def)
name - The name fo the item.def - The default short value.
public int getIntDef(java.lang.String name,
int def)
name - The name fo the item.def - The default int value.
public float getFloatDef(java.lang.String name,
float def)
name - The name fo the item.def - The default float value.
public double getDoubleDef(java.lang.String name,
double def)
name - The name fo the item.def - The default double value.
public java.lang.String getStringDef(java.lang.String name,
java.lang.String def)
name - The name fo the item.def - The default string value.
public byte[] getBytesDef(java.lang.String name,
byte[] def)
name - The name fo the item.def - The default byte-array value.
public byte getByteItemDef(java.lang.String name,
int itemNo,
byte def)
name - The name of the item.itemNo - The occurrence number.def - The default byte value.
public short getShortItemDef(java.lang.String name,
int itemNo,
short def)
name - The name of the item.itemNo - The occurrence number.def - The default short value.
public int getIntItemDef(java.lang.String name,
int itemNo,
int def)
name - The name of the item.itemNo - The occurrence number.def - The default int value.
public float getFloatItemDef(java.lang.String name,
int itemNo,
float def)
name - The name of the item.itemNo - The occurrence number.def - The default float value.
public double getDoubleItemDef(java.lang.String name,
int itemNo,
double def)
name - The name of the item.itemNo - The occurrence number.def - The default double value.
public java.lang.String getStringItemDef(java.lang.String name,
int itemNo,
java.lang.String def)
name - The name of the item.itemNo - The occurrence number.def - The default string value.
public byte[] getBytesItemDef(java.lang.String name,
int itemNo,
byte[] def)
name - The name of the item.itemNo - The occurrence number.def - The default byte-array value.public int getObufOccurrenceCount(java.lang.String propertyname)
public int getObufIntItemDef(java.lang.String name,
int itemNo,
int def)
public java.lang.String getObufStringItemDef(java.lang.String name,
int itemNo,
java.lang.String def)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||