Package org.apache.jetspeed.security.spi

Examples of org.apache.jetspeed.security.spi.JetspeedPrincipalLookupManager


 
  /* (non-Javadoc)
   * @see org.apache.jetspeed.security.spi.JetspeedPrincipalAccessManager#getPrincipals(org.apache.jetspeed.security.JetspeedPrincipalQueryContext, org.apache.jetspeed.security.JetspeedPrincipalType, java.lang.Long)
   */
  public JetspeedPrincipalResultList getPrincipals(JetspeedPrincipalQueryContext queryContext, JetspeedPrincipalType type, Long securityDomain) {
    JetspeedPrincipalLookupManager jppm = jpplf.getJetspeedPrincipalLookupManager();
    queryContext.put(JetspeedPrincipalQueryContext.JETSPEED_PRINCIPAL_TYPE, type.getName());
    queryContext.put(JetspeedPrincipalQueryContext.SECURITY_DOMAIN, securityDomain);
    return jppm.getPrincipals(queryContext);
  }
View Full Code Here


 
  /* (non-Javadoc)
   * @see org.apache.jetspeed.security.spi.JetspeedPrincipalAccessManager#getPrincipals(org.apache.jetspeed.security.JetspeedPrincipalQueryContext, org.apache.jetspeed.security.JetspeedPrincipalType, java.lang.Long)
   */
  public JetspeedPrincipalResultList getPrincipals(JetspeedPrincipalQueryContext queryContext, JetspeedPrincipalType type, Long securityDomain) {
    JetspeedPrincipalLookupManager jppm = jpplf.getJetspeedPrincipalLookupManager();
    queryContext.put(JetspeedPrincipalQueryContext.JETSPEED_PRINCIPAL_TYPE, type.getName());
    queryContext.put(JetspeedPrincipalQueryContext.SECURITY_DOMAIN, securityDomain);
    return jppm.getPrincipals(queryContext);
  }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.security.spi.JetspeedPrincipalLookupManager

Copyright © 2018 www.massapicom. 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.