Commit 37cfccb3 authored by sbade's avatar sbade

created new EJB component for Halol MG released dashboard


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97707 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ce889465
This diff is collapsed.
package ibase.dashboard.mfg.ejb;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local;
import org.json.simple.JSONObject;
@Local
public interface HalolMFGReleaseLocal extends ValidatorLocal
{
public JSONObject getHalolMFGReleaseBatches(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getMonthWiseActualRelease(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getMonthWisePendingRelease(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getSummaryGrid(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getTBDBatch(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getUnreleasedSummaryGrid(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
}
package ibase.dashboard.mfg.ejb;
import java.rmi.RemoteException;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
import org.json.simple.JSONObject;
@Remote
public interface HalolMFGReleaseRemote extends ValidatorRemote
{
public JSONObject getHalolMFGReleaseBatches(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getMonthWiseActualRelease(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getMonthWisePendingRelease(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getSummaryGrid(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getTBDBatch(String dataSourceName,String month,String geoLoc) throws RemoteException, ITMException;
public JSONObject getUnreleasedSummaryGrid(String dataSourceName,String month,String geoLoc) 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