Commit c700be89 authored by bpandey's avatar bpandey

add new module for scm dashboard


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93400 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 37571466
package ibase.dashboard.scm.ejb;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Local;
@Local
public interface LocationStockOccupancyLocal extends ValidatorLocal
{
public String getLocPhyArea() throws RemoteException, ITMException;
public String getLocDtl(String locPhyArea,String loginCode) throws RemoteException, ITMException;
public String getSelectedArea() throws RemoteException, ITMException;
}
package ibase.dashboard.scm.ejb;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import javax.ejb.Remote;
@Remote
public interface LocationStockOccupancyRemote extends ValidatorRemote
{
public String getLocPhyArea() throws RemoteException, ITMException;
public String getLocDtl(String locPhyArea,String loginCode) throws RemoteException, ITMException;
public String getSelectedArea() 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