package ejava.ejb.personnel;

import javax.ejb.EJBObject;

/**
   This interface brings combines the remote EJB interface with the business
   method declarations.
*/
public interface Person extends PersonInfo, EJBObject {
}
