Commit 7dc30938 authored by manohar's avatar manohar

changes as per EJB3 frameswork requirement servicehandler2 method name hard-coded confirm


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91296 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 2473bf22
...@@ -18,6 +18,7 @@ import ibase.system.config.AppConnectParm; ...@@ -18,6 +18,7 @@ import ibase.system.config.AppConnectParm;
@Stateless // added for ejb3 @Stateless // added for ejb3
public class ConfirmAssetRegisterIC extends ActionHandlerEJB implements ConfirmAssetRegisterICRemote,ConfirmAssetRegisterICLocal public class ConfirmAssetRegisterIC extends ActionHandlerEJB implements ConfirmAssetRegisterICRemote,ConfirmAssetRegisterICLocal
{ {
GenericUtility genericUtility = GenericUtility.getInstance(); GenericUtility genericUtility = GenericUtility.getInstance();
String errorString = null; String errorString = null;
...@@ -39,8 +40,10 @@ public class ConfirmAssetRegisterIC extends ActionHandlerEJB implements ConfirmA ...@@ -39,8 +40,10 @@ public class ConfirmAssetRegisterIC extends ActionHandlerEJB implements ConfirmA
System.out.println("actionHandler() Method Called...."); System.out.println("actionHandler() Method Called....");
return ""; return "";
} }
public String actionHandler(String xmlString, String xtraParams, String objContext) throws RemoteException,ITMException // 11/06/10 manoharan hard-coded signature while calling from framework
{ //public String actionHandler(String xmlString, String xtraParams, String objContext) throws RemoteException,ITMException
public String confirm(String xmlString, String xtraParams, String objContext) throws RemoteException,ITMException
{
String retString = null; String retString = null;
System.out.println("Xtra Params : " + xtraParams); System.out.println("Xtra Params : " + xtraParams);
//genericUtility = GenericUtility.getInstance(); //genericUtility = GenericUtility.getInstance();
......
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