Commit 478eb3ef authored by bpandey's avatar bpandey

added new method in main and local


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93749 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8a1575e9
......@@ -9,6 +9,9 @@ import javax.ejb.Local;
@Local
public interface ProductionVsBudgetReportLocal extends ValidatorLocal{
public String getProductionBudget(String frmDate,String toDate) throws RemoteException, ITMException;
public String getProductionBudget(String frmDate,String toDate,String geoLoc,String unitForm) throws RemoteException, ITMException;
public String getGeoLoCodeXmlData() throws RemoteException, ITMException;
public String getUnitFormXmlData() throws RemoteException, ITMException;
public String getInitUnitForm()throws RemoteException, ITMException;
public String getInitGeoLocation()throws RemoteException, ITMException;
}
......@@ -10,5 +10,9 @@ import javax.ejb.Remote;
public interface ProductionVsBudgetReportRemote extends ValidatorRemote
{
public String getProductionBudget(String frmDate,String toDate) throws RemoteException, ITMException;
public String getProductionBudget(String frmDate,String toDate,String geoLoc,String unitForm) throws RemoteException, ITMException;
public String getGeoLoCodeXmlData() throws RemoteException, ITMException;
public String getUnitFormXmlData() throws RemoteException, ITMException;
public String getInitGeoLocation() throws RemoteException, ITMException;
public String getInitUnitForm()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