Example
public class
BeanClass
implements
javax.ejb.EntityBean {
//no constructor
//other methods that must implement the interface
}
Solution
Provide a default public constructor with no parameters.
public class
BeanClass
implements
javax.ejb.EntityBean {
public
BeanClass () {
//..
}
//other methods that must implement the interface
}