Examples of ISecurityInfoProvider


Examples of it.eng.spagobi.security.ISecurityInfoProvider

    loadValuesDomain(response);
    loadAllProfileAttributes(response);
  }
 
  private void loadAllProfileAttributes(SourceBean response) throws SourceBeanException {
    ISecurityInfoProvider portalSecurityProvider = null;
    try {
      portalSecurityProvider = SecurityInfoProviderFactory.getPortalSecurityProvider();
    } catch (Exception e) {
      logger.error(" Error while istantiating portal security class", e);
      return;
    }
    List profileattrs = portalSecurityProvider.getAllProfileAttributesNames();
    response.setAttribute(SpagoBIConstants.PROFILE_ATTRS, profileattrs);
  }
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.