Esempio

public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//empty body
}
//other methods that must implement the interface
}

Soluzione
Implementare sempre almeno un metodo ejbPostCreate().


public class BeanClass implements javax.ejb.EntityBean {
public void ejbPostCreate () {
//non-empty body
}
//other methods that must implement the interface
}