public static class BeanClass implements javax.ejb.SessionBean { private static final void ejbPostCreate () { //..
} //methods that must implement the interface
}
¼Ö·ç¼Ç
ejbPostCreate() ¸Þ¼Òµå¸¦ public ¹× static ¶Ç´Â finalÀÌ ¾Æ´Ñ Çü½ÄÀ¸·Î ¼±¾ðÇϽʽÿÀ.
public class BeanClass implements javax.ejb.SessionBean { public void ejbPostCreate () { //..
} //methods that must implement the interface
}