I'm not sure if the verifier is working all that well.
I'm getting:
Bean : Clickstream
Method : public abstract ClickstreamRemote create(BigDecimal, Date, BigDecimal, BigDecimal, BigDecimal, BigDecimal, BigD
ecimal) throws CreateException, RemoteException
Section: 12.2.9
Warning: The return type for a create(...) method must be the entity bean's remote interface type.
21:07:59,947 WARN [verifier] EJB spec violation:
Bean : Clickstream
Method : public abstract ClickstreamRemote create(BigDecimal) throws CreateException, RemoteException
Section: 12.2.9
Warning: The return type for a create(...) method must be the entity bean's remote interface type.
21:07:59,947 WARN [verifier] EJB spec violation:
Bean : Clickstream
Method : public abstract ClickstreamRemote findByPrimaryKey(BigDecimal) throws FinderException, RemoteException
Section: 10.6.10
Warning: The return type for a find method must be the entity bean's remote interface type (single-object finder
) or a collection thereof (for a multi-object finder).
ClickstreamRemote IS the entity bean's remote interface! I have no clue what to do. Well, except turn strict verifing off (Thanks for the tip).
Andrew