Przykład

public static class BeanClass implements javax.ejb.SessionBean {
private static final Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metody, które muszą implementować interfejs
}

Rozwiązanie
Zadeklaruj metody wyszukiwarki jako publiczne (public) bez modyfikatorów static i final.


public class BeanClass implements javax.ejb.SessionBean {
public Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metody, które muszą implementować interfejs
}