Package org.apache.isis.profilestore.xml.internal

Examples of org.apache.isis.profilestore.xml.internal.UserProfileDataHandler


        xmlFile = new XmlFile(XmlFileUtil.lookupCharset(configuration), directory);
    }

    @Override
    public UserProfile getUserProfile(final String userName) {
        final UserProfileDataHandler handler = new UserProfileDataHandler();
        if (xmlFile.parse(handler, userName)) {
            return handler.getUserProfile();
        } else {
            return null;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.profilestore.xml.internal.UserProfileDataHandler

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.