Package com.tietoenator.trip.jxp.data
Class TdbAseCall
- java.lang.Object
-
- com.tietoenator.trip.jxp.data.TdbAseCall
-
public class TdbAseCall extends java.lang.Object
Represents a call to an ASE routine when inserting or updating a record.
-
-
Constructor Summary
Constructors Constructor Description TdbAseCall(java.lang.String name)
Create a new TdbAseCall object for an ASE call without an argument.TdbAseCall(java.lang.String name, java.lang.String arg)
Create a new TdbAseCall object for an ASE call with an argument.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getArgument()
Get the argument string to pass to the ASE.java.lang.String
getName()
Get the name of the ASE to call.void
setArgument(java.lang.String arg)
Set the argument string to pass to the ASE.void
setName(java.lang.String aseName)
Set the name of the ASE to call.
-
-
-
Constructor Detail
-
TdbAseCall
public TdbAseCall(java.lang.String name)
Create a new TdbAseCall object for an ASE call without an argument.- Parameters:
name
- Name of ASE to call
-
TdbAseCall
public TdbAseCall(java.lang.String name, java.lang.String arg)
Create a new TdbAseCall object for an ASE call with an argument.- Parameters:
name
- Name of ASE to callarg
- Argument string to pass to the ASE
-
-
Method Detail
-
getName
public java.lang.String getName()
Get the name of the ASE to call.
-
setName
public void setName(java.lang.String aseName)
Set the name of the ASE to call.- Parameters:
aseName
- Name of ASE routine
-
getArgument
public java.lang.String getArgument()
Get the argument string to pass to the ASE.
-
setArgument
public void setArgument(java.lang.String arg)
Set the argument string to pass to the ASE.- Parameters:
arg
- Name of ASE routine
-
-