Package org.jasig.portal.security.provider

Examples of org.jasig.portal.security.provider.RestrictedPerson


     * @return <i>restricted</i> user
     */
    public static RestrictedPerson createRestrictedPerson() {
        IPerson person = createPerson();
       
        return new RestrictedPerson(person);
    }
View Full Code Here


           IPerson person = null;
           try {
               IPersonAttributeDao pa = PersonAttributeDaoLocator.getPersonAttributeDao();
               final IPersonAttributes personAttributes = pa.getPerson(member.getKey());

               RestrictedPerson rp = PersonFactory.createRestrictedPerson();
               if (personAttributes != null) {
                   rp.setAttributes(personAttributes.getAttributes());
               }
              
               person = rp;
           }
           catch (Exception ex) {
View Full Code Here

TOP

Related Classes of org.jasig.portal.security.provider.RestrictedPerson

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.