yes it is extended from ProductImpl.... for your reference here is my implementation
@Entity
public class MyProduct extends ProductImpl {
@ManyToOne(targetEntity = StoreImpl.class)
protected Store store;
public Store getStore() {
return store;
}
public void setStore(Store store) {
this.store = store;
}
}
This forum is in readonly mode and serves as an archive of old information. All posting, registration and commenting abilities have been turned off. To get help, the Broadleaf team reguarly monitors the broadleaf-commerce tag on Stack Overflow so please ask your questions there.