//
// find the entry resource, use the Entry capability to set the
// member EPR and service group property values
//
WsResource entryResource = (WsResource)getResourceManager().getResource(entryEPR);
Entry entryCap = (Entry)entryResource.getCapability(WssgConstants.ENTRY_URI);
WsResource sgResource = getServiceGroup();
entryCap.setServiceGroup(sgResource);
entryCap.setMemberEPR(memberEPR);
ServiceGroup sgCap = (ServiceGroup)sgResource.getCapability(WssgConstants.SERVICE_GROUP_URI);
sgCap.addEntry(memberEPR, entryResource);
return entryResource;