Przykład

public static class BeanClass implements javax.ejb.SessionBean {
private static final void ejbPostCreate () {
//..
}
//metody, które muszą implementować interfejs
}

Rozwiązanie
Zadeklaruj metodę ejbPostCreate() jako publiczną (public) bez modyfikatorów static i final.


public class BeanClass implements javax.ejb.SessionBean {
public void ejbPostCreate () {
//..
}
//metody, które muszą implementować interfejs
}