Commit 7a864c7b authored by jshaikh's avatar jshaikh

Added obj_link and passing primary key value to open customer entry

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@175709 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fe04db54
......@@ -10,8 +10,8 @@ import org.json.simple.JSONObject;
@Local
public interface ImpEventsLocal {
public JSONObject getEvents(String loginCode, String dataSourceName) throws RemoteException, ITMException;
//public String getData(String loginCode) throws RemoteException, ITMException;
public JSONObject getEvents(String loginCode, String dataSourceName) throws RemoteException, ITMException;
}
}
package ibase.dashboard.sfa.ejb;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Remote;
import org.json.simple.JSONObject;
@Remote
public interface ImpEventsRemote
{
//public String getData(String loginCode) throws RemoteException, ITMException;
public JSONObject getEvents(String loginCode, String dataSourceName) 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