Package org.apache.sling.engine.impl.log

Examples of org.apache.sling.engine.impl.log.CustomLogFormat


        this.testCase0Helper("%!300,400{Content-Type}i");
        this.testCase0Helper("xyz %Dms");
    }

    private void testCase0Helper(String format) {
        CustomLogFormat clf = new CustomLogFormat(format);
        String format2 = clf.toString();
        assertEquals(format, format2);
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.engine.impl.log.CustomLogFormat

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.