Commit 9c696fbc authored by vbhosale's avatar vbhosale

Added new ejb to view sales trends dashboard (dwh_sales_sum)

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@193097 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6b07698e
This diff is collapsed.
package ibase.dashboard.scm.ejb;
import java.rmi.RemoteException;
import org.json.JSONException;
import org.json.simple.JSONArray;
import ibase.webitm.utility.ITMException;
public interface SalesTrendsLocal
{
public String getSalesSummary(String dataSourceName) throws RemoteException, ITMException, JSONException, Exception;
}
package ibase.dashboard.scm.ejb;
import java.rmi.RemoteException;
import org.json.JSONException;
import org.json.simple.JSONArray;
import ibase.webitm.utility.ITMException;
public interface SalesTrendsRemote {
public String getSalesSummary(String dataSourceName) throws RemoteException, ITMException, JSONException, Exception;
}
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