com.ibm.dse.services.sap
Class SAPMethod

java.lang.Object
  |
  +--com.ibm.dse.services.sap.SAPMethod

public class SAPMethod
extends java.lang.Object

The SAPMethod class keeps information about the RFC module that is to be executed.


Field Summary
protected  Hashtable exportParamsTable
          Keeps the description of the export parameters that will be returned after the BAPI function execution.
protected  Hashtable importParamsTable
          Keeps the description of the import parameters that the BAPI function will use as arguments during its execution.
protected  java.lang.String methodName
          Keeps the name of the BAPI function to be executed.
 
Constructor Summary
SAPMethod()
          This constructor creates a SAPMethod object.
SAPMethod(java.lang.String aSAPMethodName)
          This constructor creates a SAPMethod object.
 
Method Summary
 Hashtable getExportParamsTable()
          Returns the exportParamsTable attribute value.
 Hashtable getImportParamsTable()
          Returns the importParamsTable attribute value.
 java.lang.String getMethodName()
          Returns the methodName attribute value.
 void setExportParamsTable(Hashtable h)
          Sets the exportParamsTable attribute to a hash table.
 void setImportParamsTable(Hashtable h)
          Sets the importParamsTable attribute to a hash table.
 void setMethodName(java.lang.String s)
          Sets the methodName attribute to the String provided as argument.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

methodName

protected java.lang.String methodName
Keeps the name of the BAPI function to be executed.

exportParamsTable

protected Hashtable exportParamsTable
Keeps the description of the export parameters that will be returned after the BAPI function execution.

importParamsTable

protected Hashtable importParamsTable
Keeps the description of the import parameters that the BAPI function will use as arguments during its execution.
Constructor Detail

SAPMethod

public SAPMethod()
This constructor creates a SAPMethod object.

SAPMethod

public SAPMethod(java.lang.String aSAPMethodName)
This constructor creates a SAPMethod object. It sets the method name attribute to aSAPMethodName.
Method Detail

getExportParamsTable

public Hashtable getExportParamsTable()
Returns the exportParamsTable attribute value.
Returns:
java.lang.String

getImportParamsTable

public Hashtable getImportParamsTable()
Returns the importParamsTable attribute value.
Returns:
java.lang.String

getMethodName

public java.lang.String getMethodName()
Returns the methodName attribute value.
Returns:
java.lang.String

setExportParamsTable

public void setExportParamsTable(Hashtable h)
Sets the exportParamsTable attribute to a hash table.
Parameters:
h - com.ibm.dse.base.Hashtable

setImportParamsTable

public void setImportParamsTable(Hashtable h)
Sets the importParamsTable attribute to a hash table.
Parameters:
h - com.ibm.dse.base.Hashtable

setMethodName

public void setMethodName(java.lang.String s)
Sets the methodName attribute to the String provided as argument.
Parameters:
s - java.lang.String