// default interface
protected SFamousPlaceDetails loadImpl(XMLDispatcherContext xdCtx)
throws XMLDispatcherUserException, XMLDispatcherAppException {
SFamousPlaceDetails rply = new SFamousPlaceDetails();
rply.setObjId(getId());
rply.setObjClass(SFamousPlaceDetails.class.getName());
rply.setName(getName());
rply.setDescr(getDescription());
rply.setRa(getRa());
rply.setDec(getDec());
return rply;
}