Commit f2345a9f authored by smanohar's avatar smanohar

New component from Sun source added

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213143 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a14ff6c5
package ibase.webitm.ejb.fin;
import java.sql.Timestamp;
public class FinChangeCalBean {
String refNo="",custCode="",tranId="",tranIdDrn="",refSer="",crTerm="",itemSer="",custName="",city="",salesPerson="";
public String getSalesPerson() {
return salesPerson;
}
public void setSalesPerson(String salesPerson) {
this.salesPerson = salesPerson;
}
int rcpAmt = 0;
double lateDays=0.0,finChg=0.0,intAmt=0.0;
public double getIntAmt() {
return intAmt;
}
public void setIntAmt(double intAmt) {
this.intAmt = intAmt;
}
public double getFinChg() {
return finChg;
}
public void setFinChg(double finChg) {
this.finChg = finChg;
}
public double getLateDays() {
return lateDays;
}
public void setLateDays(double lateDays) {
this.lateDays = lateDays;
}
Timestamp refDate=null,effDate= null,dueDate=null;
public Timestamp getRefDate() {
return refDate;
}
public void setRefDate(Timestamp refDate) {
this.refDate = refDate;
}
public Timestamp getEffDate() {
return effDate;
}
public void setEffDate(Timestamp effDate) {
this.effDate = effDate;
}
public Timestamp getDueDate() {
return dueDate;
}
public void setDueDate(Timestamp dueDate) {
this.dueDate = dueDate;
}
public String getRefNo() {
return refNo;
}
public void setRefNo(String refNo) {
this.refNo = refNo;
}
public String getCustCode() {
return custCode;
}
public void setCustCode(String custCode) {
this.custCode = custCode;
}
public String getTranId() {
return tranId;
}
public void setTranId(String tranId) {
this.tranId = tranId;
}
public String getTranIdDrn() {
return tranIdDrn;
}
public void setTranIdDrn(String tranIdDrn) {
this.tranIdDrn = tranIdDrn;
}
public String getRefSer() {
return refSer;
}
public void setRefSer(String refSer) {
this.refSer = refSer;
}
public String getCrTerm() {
return crTerm;
}
public void setCrTerm(String crTerm) {
this.crTerm = crTerm;
}
public String getItemSer() {
return itemSer;
}
public void setItemSer(String itemSer) {
this.itemSer = itemSer;
}
public String getCustName() {
return custName;
}
public void setCustName(String custName) {
this.custName = custName;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public int getRcpAmt() {
return rcpAmt;
}
public void setRcpAmt(int rcpAmt) {
this.rcpAmt = rcpAmt;
}
}
This diff is collapsed.
package ibase.webitm.ejb.fin;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ProcessLocal;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local;
@Local
public interface FinanceChargeCalcPrcLocal extends ProcessLocal{
@Override
public String process(String arg0, String arg1, String arg2, String arg3)
throws RemoteException, ITMException;
}
package ibase.webitm.ejb.fin;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ProcessRemote;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
@Remote
public interface FinanceChargeCalcPrcRemote extends ProcessRemote {
@Override
public String process(String arg0, String arg1, String arg2, String arg3)
throws RemoteException, ITMException;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment