¿¹Á¦
public class
BeanClass
implements
javax.ejb.SessionBean {
public String
ejbCreate () {
//instantiation of bean
return
"example primary key";
}
//other methods that must implement the interface
}
¼Ö·ç¼Ç
ejbCreate() ¸Þ¼Òµå¿¡ ´ëÇØ
void
¸®ÅÏ À¯ÇüÀ» ¼±¾ðÇϽʽÿÀ.
public class
BeanClass
implements
javax.ejb.SessionBean {
public void
ejbCreate () {
//instantiation of bean
}
//other methods that must implement the interface
}