package ejava.examples.personnel.ejb20;

import javax.ejb.EJBObject;

/**
   This interface supplies the remote component interface required by the
   EJB container by bridging the remote business methods supplied by
   PersonBI with EJBObject.
*/
public interface PersonRemote extends PersonBI, EJBObject {
}
