package ejava.examples.personnel.ejb20;

import javax.ejb.EJBLocalObject;

/**
   This interface supplies the local component interface required by the
   EJB container by bridging the local business methods supplied by
   PersonLBI with EJBLocal.
*/
public interface PersonLocal extends PersonLBI, EJBLocalObject {
}
