Wrappers | Description |
---|---|
void release(); // does not throw | Releases the underlying COM RSO instance. After the release method is called, the Java object instance becomes essentially useless and should be discarded. |
void getConnectionDetails(String akaName, String location, String routing); | Wraps the COM RSO GetConnectionDetails method. Both location and routing are optional and can be passed as null references or empty strings. |
void connect(String akaName, String location, String routing); | Wraps the COM RSO Connect method. Both location and routing are optional and can be passed as null references or empty strings. |
void callProc(String procName, ParameterData byValPDO, ParameterData byRefPDO); | Wraps the COM RSO CallProc method. Both byValPDO and byRefPDO are optional and can be passed as null references. |
String jsonRpcRequest(String request) | Wraps the COM RSO JsonRpcRequest method. |
void disconnect(); | Wraps the COM RSO Disconnect method |
void initiate(String imgFile, String cmdFlags, String location, String routing, int ps) | Wraps the COM RSO Initiate method |
Void terminate(); | Is provided just for symmetry with the initiate method. Has the same effect as disconnect. |
String getAkaName(); void setAkaName(String akaName); | The get/set methods wrap the COM RSO AkaName property. |
String getImageFile(); void setImageFile(String imageFile); | The get and set methods wrap the COM RSO ImageFile property. |
String getCmdFlags(); void setCmdFlags(String cmdFlags); | The get and set methods wrap the COM RSO CmdFlags property. |
String getLocation(); void setLocation(String location); | The get and set methods wrap the COM RSO Location property. |
String getRouting(); void setRouting(String routing); | The get and set methods wrap the COM RSO Routing property. |
int getPrivateOrShared(); void setPrivateOrShared(int iVal); | The get and set methods wrap the COM RSO PrivateOrShared property. |
int getUseASOLib(); void setUseASOLib(int iVal); | The get and set methods wrap the COM RSO UseASOLib property. |
boolean isConnected(); | The get method wraps the COM RSO readonly IsConnected property. |