Commit f380bb0c authored by bpandey's avatar bpandey

as per client changes


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95741 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7da2e2b8
......@@ -12,14 +12,13 @@ import org.json.simple.JSONObject;
public interface SalesPerformanceLocal extends ValidatorLocal
{
public JSONObject getMetaData(String fileName) 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) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName,String year) throws RemoteException, ITMException;
public JSONObject getMnthlySalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getYTDSalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getMnthSalesDivWiseGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getGridData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getSalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getProfitGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getMnthlySalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getYTDSalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getMnthSalesDivWiseGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
......
......@@ -10,13 +10,13 @@ import org.json.simple.JSONObject;
public interface SalesPerformanceRemote extends ValidatorRemote
{
public JSONObject getMetaData(String fileName) 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) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName ,String year) throws RemoteException, ITMException;
public JSONObject getMnthlySalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getYTDSalesGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getMnthSalesDivWiseGraphData(String dataSourceName,String year,String month) throws RemoteException, ITMException;
public JSONObject getGridData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getSalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getProfitGraphData(String dataSourceName ,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(String dataSourceName ,String month) throws RemoteException, ITMException;
public JSONObject getMnthlySalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getYTDSalesGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
public JSONObject getMnthSalesDivWiseGraphData(String dataSourceName,String month) throws RemoteException, ITMException;
}
package ibase.dashboard.ejb;
import java.rmi.RemoteException;
import java.util.ArrayList;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Local;
import org.json.simple.JSONObject;
......@@ -13,9 +12,12 @@ import org.json.simple.JSONObject;
@Local
public interface SalesPerformanceTwoLocal extends ValidatorLocal
{
public JSONObject getMnthlyTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAkunaTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAzuraTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAllIndiaTopBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getCNSDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getCVDDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getGIPAINDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getGYNAECDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getOPTHALDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getSPLCAREDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
}
package ibase.dashboard.ejb;
import java.rmi.RemoteException;
import ibase.utility.BaseException;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
......@@ -11,8 +9,12 @@ import org.json.simple.JSONObject;
@Remote
public interface SalesPerformanceTwoRemote extends ValidatorRemote
{
public JSONObject getMnthlyTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAkunaTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAzuraTopBrandGraphData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getAllIndiaTopBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getCNSDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getCVDDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getGIPAINDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getGYNAECDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getOPTHALDivisionBrandData(String dataSourceName, String month, String topNos) throws RemoteException, ITMException;
public JSONObject getSPLCAREDivisionBrandData(String dataSourceName, String month, String topNos) 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