Commit f3006267 authored by bpandey's avatar bpandey

as per changes on client requirement


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95676 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 69c9ee57
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -11,10 +11,18 @@ import org.json.simple.JSONObject;
@Local
public interface SalesPerformanceLocal extends ValidatorLocal
{
public JSONObject getMetaData() throws RemoteException, ITMException;
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,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(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;
}
......@@ -9,10 +9,14 @@ import org.json.simple.JSONObject;
@Remote
public interface SalesPerformanceRemote extends ValidatorRemote
{
public JSONObject getMetaData() throws RemoteException, ITMException ;
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,String month) throws RemoteException, ITMException;
public JSONObject getExpenseGraphData(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;
}
package ibase.dashboard.ejb;
import java.rmi.RemoteException;
import java.util.ArrayList;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local;
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;
}
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;
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;
}
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