Példa

public static class BeanClass implements javax.ejb.SessionBean {
private static final Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metódusok, amelyeknek meg kell valósítaniuk a felületet
}

Megoldás
A kereső metódusokat mindig public metódusként deklarálja és ne static vagy final metódusként


public class BeanClass implements javax.ejb.SessionBean {
public Collection ejbFindByPrimaryKey (String key) throws FinderException{
//..
}
//metódusok, amelyeknek meg kell valósítaniuk a felületet
}