Commit 5197299a authored by bpandey's avatar bpandey

added new component for sales dashboard the requestId=BI4CSUN001


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95309 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0c06bdad
This diff is collapsed.
package ibase.dashboard.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 SalesPerformanceLocal extends ValidatorLocal
{
public JSONObject getMetaData() throws RemoteException, ITMException;
public JSONObject getGridData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getSalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getProfitGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
}
package ibase.dashboard.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 SalesPerformanceRemote extends ValidatorRemote
{
public JSONObject getMetaData() throws RemoteException, ITMException ;
public JSONObject getGridData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getSalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getProfitGraphData(String dataSourceName ,String year,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName ,String year,String month) 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