Package org.apache.roller.weblogger.pojos

Examples of org.apache.roller.weblogger.pojos.UserAttribute


        getBean().setLocale(ud.getLocale());
        getBean().setTimeZone(ud.getTimeZone());
       
        UserManager mgr = WebloggerFactory.getWeblogger().getUserManager();
        try {
            UserAttribute openIdUrl = mgr.getUserAttribute(
                ud.getUserName(), UserAttribute.Attributes.OPENID_URL.toString());
            if (openIdUrl != null) {
                getBean().setOpenIdUrl(openIdUrl.getValue());
            }
        } catch (Exception ex) {
            log.error("Unexpected error loading user OpenID url", ex);
            addError("error in action", ex.toString());
        }
View Full Code Here

TOP

Related Classes of org.apache.roller.weblogger.pojos.UserAttribute

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.