Esempio

public class BeanClass implements javax.ejb.EntityBean {
private static Object staticField;

//other methods that must implement the interface
}

Soluzione
Dichiarare i campi static come final.


public class BeanClass implements javax.ejb.EntityBean {
private static final Object staticField;

//other methods that must implement the interface
}