Package org.apache.sling.jackrabbit.usermanager.post.impl

Examples of org.apache.sling.jackrabbit.usermanager.post.impl.DateParser


    // ---------- SCR Integration ----------------------------------------------

    protected void activate(ComponentContext context) {
        Dictionary<?, ?> props = context.getProperties();

        dateParser = new DateParser();
        String[] dateFormats = OsgiUtil.toStringArray(props.get(PROP_DATE_FORMAT));
        for (String dateFormat : dateFormats) {
            dateParser.register(dateFormat);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.jackrabbit.usermanager.post.impl.DateParser

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.