¿¹Á¦

public static class BeanClass implements javax.ejb.SessionBean {
private static final Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//methods that must implement the interface
}

¼Ö·ç¼Ç
finder ¸Þ¼Òµå¸¦ public ¹× static ¶Ç´Â finalÀÌ ¾Æ´Ñ Çü½ÄÀ¸·Î ¼±¾ðÇϽʽÿÀ.


public class BeanClass implements javax.ejb.SessionBean {
public Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//methods that must implement the interface
}