Package org.apache.jetspeed.portlets.security.users

Source Code of org.apache.jetspeed.portlets.security.users.UserManagerPortlet

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jetspeed.portlets.security.users;

import java.security.Principal;
import java.util.Iterator;

import javax.faces.context.FacesContext;
import javax.portlet.PortletConfig;
import javax.portlet.PortletException;
import javax.security.auth.Subject;

import org.apache.jetspeed.CommonPortletServices;
import org.apache.jetspeed.security.SecurityException;
import org.apache.jetspeed.security.User;
import org.apache.jetspeed.security.UserManager;
import org.apache.jetspeed.security.UserPrincipal;
import org.apache.portals.bridges.jsf.FacesPortlet;

/**
* Provides maintenance capabilities for User Administration.
*
* @author <a href="mailto:taylor@apache.org">David Sean Taylor </a>
* @version $Id: UserManagerPortlet.java 348264 2005-11-22 22:06:45Z taylor $
*/
public class UserManagerPortlet extends FacesPortlet {
  private UserManager userManager;

  public void init(PortletConfig config) throws PortletException {
    super.init(config);
    userManager = (UserManager) getPortletContext().getAttribute(
                CommonPortletServices.CPS_USER_MANAGER_COMPONENT);
    if (null == userManager) {
      throw new PortletException(
          "Failed to find the User Manager on portlet initialization");
    }
//    System.out.println("user manager = " + userManager);
    try {
      Iterator users = userManager.getUsers("");
      while (users.hasNext()) {
        User user = (User) users.next();
//        System.out.println("++++ User = " + user);
        getPrincipal(user.getSubject(), UserPrincipal.class);
//        System.out.println("principal = " + principal.getName());
      }
    } catch (SecurityException se) {
      throw new PortletException(se);
    }
  }

  protected void preProcessFaces(FacesContext context) {
//    System.out.println("*** pre processing faces for user manager: " + context);
  }

  public Principal getPrincipal(Subject subject, Class classe) {
    Principal principal = null;
    Iterator principals = subject.getPrincipals().iterator();
    while (principals.hasNext()) {
      Principal p = (Principal) principals.next();
      if (classe.isInstance(p)) {
        principal = p;
        break;
      }
    }
    return principal;
  }

}
TOP

Related Classes of org.apache.jetspeed.portlets.security.users.UserManagerPortlet

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.