org.apache.shale.usecases.validator
Class Procedure

java.lang.Object
  extended by org.apache.shale.usecases.validator.Procedure

public class Procedure
extends Object


Constructor Summary
Procedure(String cpt, String descr, double minAmt, double maxAmt)
           
 
Method Summary
 double getBilledAmt()
           
 String getCpt()
           
 String getDescr()
           
 double getMaxAmt()
           
 double getMinAmt()
           
 int getPriority()
           
 void setBilledAmt(double billedAmt)
           
 void setCpt(String cpt)
           
 void setDescr(String descr)
           
 void setMaxAmt(double maxAmt)
           
 void setMinAmt(double minAmt)
           
 void setPriority(int newValue)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Procedure

public Procedure(String cpt,
                 String descr,
                 double minAmt,
                 double maxAmt)
Parameters:
cpt - procedure code
descr - procedure description
minAmt - minimum allowable amount
maxAmt - maximum allowable amount
Method Detail

setPriority

public void setPriority(int newValue)

getPriority

public int getPriority()

getCpt

public String getCpt()
Returns:
procedure code

setCpt

public void setCpt(String cpt)
Parameters:
cpt - procedure code

getDescr

public String getDescr()
Returns:
procedure description

setDescr

public void setDescr(String descr)
Parameters:
descr - procedure description

getMaxAmt

public double getMaxAmt()
Returns:
Maximum allowable amount for the procedure

setMaxAmt

public void setMaxAmt(double maxAmt)
Parameters:
maxAmt - Maximum allowable amount for the procedure

getMinAmt

public double getMinAmt()
Returns:
Minimum allowable amount for the procedure

setMinAmt

public void setMinAmt(double minAmt)
Parameters:
minAmt - minimum allowable amount for the procedure

getBilledAmt

public double getBilledAmt()
Returns:
actual billed amount

setBilledAmt

public void setBilledAmt(double billedAmt)
Parameters:
billedAmt - actual billed amount


Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.