Hi Community,
I have created an value object and a session facade with:
@ejb.facade view type=”local”
@ejb.value-object match=”*” name=”CategoryEJB”
The new facade class is missing getData() inCategoryEJBLocal.
I have extendet the CMP for the ValueObject
/**
* @ejb.interface-method view-type = “both”
* @return
*/
public abstract CategoryEJBValue getCategoryValue();
/**
* @ejb.interface-method view-type = “both”
* @param categoryValue
*/
public abstract void setCategoryValue(CategoryEJBValue categoryValue);
What I have to do to solve the error?
Many thanks in advance
Oliver