public static class BeanClass implements javax.ejb.SessionBean { private static final Collection ejbFindByPrimaryKey (String key) throws FinderException{ //..
} //méthodes devant implémenter l'interface
}
Solution
Déclarez les méthodes de localisation en tant que méthodes de type public et non static ou final.
public class BeanClass implements javax.ejb.SessionBean { public Collection ejbFindByPrimaryKey (String key) throws FinderException{ //..
} //méthodes devant implémenter l'interface
}