com.ibm.dse.services.jdbc
Class StoredProcParameter

java.lang.Object
  |
  +--com.ibm.dse.services.jdbc.StoredProcParameter

public class StoredProcParameter
extends java.lang.Object

The StoreProcParameter class encapsulates the information concerning an specific parameter of a Stored Procedure.


Field Summary
protected  java.lang.String paramName
          Keeps the name of the stored procedure parameter.
protected  int paramType
          Keeps the type of the stored procedure parameter.
 
Constructor Summary
StoredProcParameter()
          This constructor creates a StoredProcParameter object.
StoredProcParameter(java.lang.String aParamName, int aParamType)
          This constructor creates a StoredProcParameter object and sets its paramName attribute to aParamName and its paramType attribute to aParamType.
 
Method Summary
protected  java.lang.String getParamName()
          Gets the paramName attribute
protected  int getParamType()
          Gets the paramType attribute
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

paramName

protected java.lang.String paramName
Keeps the name of the stored procedure parameter.

paramType

protected int paramType
Keeps the type of the stored procedure parameter.
Constructor Detail

StoredProcParameter

public StoredProcParameter()
This constructor creates a StoredProcParameter object.

StoredProcParameter

public StoredProcParameter(java.lang.String aParamName,
                           int aParamType)
This constructor creates a StoredProcParameter object and sets its paramName attribute to aParamName and its paramType attribute to aParamType.
Parameters:
aParamName - java.lang.String
aTypeName - java.lang.String
Method Detail

getParamName

protected java.lang.String getParamName()
Gets the paramName attribute
Returns:
java.lang.String

getParamType

protected int getParamType()
Gets the paramType attribute
Returns:
int