Example 8.8 Multiple Value Objects Strategy - Resource Entity Bean // imports ... public class ResourceEntity implements EntityBean { // entity bean attributes ... // entity bean business methods ... // Multiple Value Object method : Get ResourceVO public ResourceVO getResourceData() { // create new ResourceVO instance and copy // attribute values from entity bean into VO ... return createResourceVO(); } // Multiple Value Object method : Get // ResourceDetailsVO public ResourceDetailsVO getResourceDetailsData() { // create new ResourceDetailsVO instance and copy // attribute values from entity bean into VO ... return createResourceDetailsVO(); } // other entity bean methods ... }