Examples of loadAccessibleViewpointsByObjId()


Examples of it.eng.spagobi.analiticalmodel.document.dao.IViewpointDAO.loadAccessibleViewpointsByObjId()

    logger.debug("IN");
    List viewpoints = new ArrayList();
    try {
      IViewpointDAO biVPDAO = DAOFactory.getViewpointDAO();
      IEngUserProfile profile = getUserProfile();
      viewpoints = biVPDAO.loadAccessibleViewpointsByObjId(obj.getId(), profile);
    } catch (Exception e) {
      logger.error("Error retriving the viewpoint list", e);
    } finally {
      logger.debug("OUT");
    }
View Full Code Here

Examples of it.eng.spagobi.analiticalmodel.document.dao.IViewpointDAO.loadAccessibleViewpointsByObjId()

      logger.debug("User: [" + userProfile.getUserUniqueIdentifier() + "]");
      logger.debug("Document Id:  [" + biobjectId + "]");
     
      try {
        viewpointDAO = DAOFactory.getViewpointDAO();
        viewpoints = viewpointDAO.loadAccessibleViewpointsByObjId(biobjectId, getUserProfile());
      } catch (EMFUserError e) {
        logger.error("Cannot load viewpoints for document [" + biobjectId + "]", e);
        throw new SpagoBIServiceException(SERVICE_NAME, "Cannot load viewpoints for document [" + biobjectId + "]", e);
      }
         
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.