Package org.nuxeo.ecm.user.center.profile

Examples of org.nuxeo.ecm.user.center.profile.UserProfileService


     * Get the related user avatar to display in the UI comment
     */
    public String getAvatarURL(String commentUser) throws ClientException {
        String url = VirtualHostHelper.getContextPathProperty()
                + "/icons/missing_avatar.png";
        UserProfileService userProfileService = Framework.getLocalService(UserProfileService.class);
        DocumentModel userProfileDoc = userProfileService.getUserProfileDocument(
                commentUser, ctx.getCoreSession());
        if (userProfileDoc == null) {
            return url;
        }

View Full Code Here

TOP

Related Classes of org.nuxeo.ecm.user.center.profile.UserProfileService

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.