Class OracleCmdParams
- java.lang.Object
-
- com.alachisoft.ncache.runtime.dependencies.OracleCmdParams
-
public class OracleCmdParams extends java.lang.ObjectHolds the type and value of the parameters passed to the command instance.
-
-
Constructor Summary
Constructors Constructor Description OracleCmdParams()Creates an instance of Oracle command parameters with OracleParameterDirection.Input.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OracleParameterDirectiongetDirection()Gets the direction of the passed parameters (in/out).OracleCmdParamsTypegetType()Gets the type of the command parameter.java.lang.ObjectgetValue()Gets the value of the command parameter.voidsetDirection(OracleParameterDirection direction)Sets the direction of the passed parameters (in/out).voidsetType(OracleCmdParamsType type)Sets the type of the command parameter.voidsetValue(java.lang.Object value)Sets the value of the command parameter.
-
-
-
Method Detail
-
getDirection
public OracleParameterDirection getDirection()
Gets the direction of the passed parameters (in/out).- Returns:
- The direction of parameters.
-
setDirection
public void setDirection(OracleParameterDirection direction)
Sets the direction of the passed parameters (in/out).- Parameters:
direction- The direction of parameters to set.
-
getType
public OracleCmdParamsType getType()
Gets the type of the command parameter.- Returns:
- The command param type.
-
setType
public void setType(OracleCmdParamsType type)
Sets the type of the command parameter.- Parameters:
type- The command param type.
-
getValue
public java.lang.Object getValue()
Gets the value of the command parameter.- Returns:
- The value against the command param.
-
setValue
public void setValue(java.lang.Object value)
Sets the value of the command parameter.- Parameters:
value- The value against the command param.
-
-