Package org.apache.jetspeed.security

Examples of org.apache.jetspeed.security.UserResultList


  {
    return (List<User>) getPrincipals(nameFilter);
  }

  public UserResultList getUsersExtended(JetspeedPrincipalQueryContext queryContext) throws SecurityException {
    return new UserResultList(getPrincipals(queryContext));
  }
View Full Code Here


       
        JetspeedPrincipalQueryContext ctx = new JetspeedPrincipalQueryContext(userName, startIndex, results, sortDirection, roles, groups, null, attributeMap);
       
        try
        {
            UserResultList resultList = userManager.getUsersExtended(ctx);
            UserDataTableBean result = new UserDataTableBean(resultList);
            result.setStartIndex(startIndex);
            result.setPageSize(results);
            result.setRecordsReturned(results);
           
View Full Code Here

  {
    return (List<User>) getPrincipals(nameFilter);
  }

  public UserResultList getUsersExtended(JetspeedPrincipalQueryContext queryContext) throws SecurityException {
    return new UserResultList(getPrincipals(queryContext));
  }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.security.UserResultList

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.