Commit eacb611d authored by arawankar's avatar arawankar

EmpLeaveCancel.java

-Changes commented which are made for leave encashment cancellation
-Below new component created for leave encashment cancellation for sun
EmpEncLeaveCanc.java
EmpEncLeaveCancLocal.java
EmpEncLeaveCancRemote.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@195356 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 26d42c72
This diff is collapsed.
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
import java.sql.Connection;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
public interface EmpEncLeaveCancLocal extends ActionHandlerLocal
{
@Override
public String confirm(String arg0, String arg1, String arg2, Connection arg3)
throws RemoteException, ITMException;
@Override
public String confirm(String arg0, String arg1, String arg2)
throws RemoteException, ITMException;
}
package ibase.webitm.ejb.adm.adv;
import java.rmi.RemoteException;
import java.sql.Connection;
import ibase.utility.UserInfoBean;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
public interface EmpEncLeaveCancRemote extends ActionHandlerRemote
{
@Override
public String confirm(String arg0, String arg1, String arg2)
throws RemoteException, ITMException;
@Override
public String confirm(String arg0, String arg1, String arg2,
Connection arg3, UserInfoBean arg4) 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