Příklad

public static class BeanClass implements javax.ejb.SessionBean {
private static final Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metody které musí implementovat rozhraní
}

Řešení
Deklarujte metody vyhledávání jako public a ne jako static ani final


public class BeanClass implements javax.ejb.SessionBean {
public Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metody které musí implementovat rozhraní
}