Commit 9d6665de authored by bpandey's avatar bpandey

modify source code as per client changes


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93977 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fd7d3644
package ibase.dashboard.mfg.ejb;
import java.rmi.RemoteException;
import java.util.List;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local;
@Local
public interface MachineUtlDetailsLocal extends ValidatorLocal
{
public String getSiteCodeList() throws RemoteException, ITMException;
public String getMachineUtlDetailsBySiteCode(String siteCode,String fromDate,String toDate) throws RemoteException,ITMException;
}
package ibase.dashboard.mfg.ejb;
import java.rmi.RemoteException;
import java.util.List;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
@Remote
public interface MachineUtlDetailsRemote extends ValidatorRemote{
public String getSiteCodeList() throws RemoteException, ITMException;
public String getMachineUtlDetailsBySiteCode(String siteCode,String fromDate,String toDate) throws RemoteException,ITMException;
}
...@@ -9,9 +9,9 @@ import javax.ejb.Local; ...@@ -9,9 +9,9 @@ import javax.ejb.Local;
@Local @Local
public interface ProductionVsBudgetReportLocal extends ValidatorLocal{ public interface ProductionVsBudgetReportLocal extends ValidatorLocal{
public String getProductionBudget(String frmDate,String toDate,String geoLoc,String unitForm) 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 getGeoLoCodeXmlData() throws RemoteException, ITMException;
public String getUnitFormXmlData() throws RemoteException, ITMException; public String getUnitFormXmlData() throws RemoteException, ITMException;
public String getInitUnitForm()throws RemoteException, ITMException; public String getPDFFormate () throws RemoteException, ITMException;
public String getInitGeoLocation()throws RemoteException, ITMException;
} }
...@@ -13,6 +13,6 @@ public interface ProductionVsBudgetReportRemote extends ValidatorRemote ...@@ -13,6 +13,6 @@ public interface ProductionVsBudgetReportRemote extends ValidatorRemote
public String getProductionBudget(String frmDate,String toDate,String geoLoc,String unitForm) 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 getGeoLoCodeXmlData() throws RemoteException, ITMException;
public String getUnitFormXmlData() throws RemoteException, ITMException; public String getUnitFormXmlData() throws RemoteException, ITMException;
public String getInitGeoLocation() throws RemoteException, ITMException; public String getPDFFormate () 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