// class methods
protected STelescope ejbHomeQueryImpl(XMLDispatcherContext xdCtx, SObjRef rqst)
throws XMLDispatcherUserException, XMLDispatcherAppException {
ITelescopeDAO dao = TelescopeDAOFactory.getTelescopeDAOInstance();
try {
return dao.fetchByPK(new Integer(rqst.getObjId()));
}
catch (DAOException e) {
logcat.error("DAOError", e);
throw new XMLDispatcherAppException(e.getMessage());
}