Package org.apache.ace.log.server.servlet

Examples of org.apache.ace.log.server.servlet.LogServlet


    private LogEvent m_event2 = new LogEvent("tID", 123, 2, 888888, 2, new Properties());
    private MockLogStore m_mockStore;

    @BeforeMethod(alwaysRun = true)
    protected void setUp() throws Exception {
        m_logServlet = new LogServlet("test", false /* useAuth */);
        TestUtils.configureObject(m_logServlet, LogService.class);
        m_mockStore = new MockLogStore();
        TestUtils.configureObject(m_logServlet, LogStore.class, m_mockStore);
    }
View Full Code Here

TOP

Related Classes of org.apache.ace.log.server.servlet.LogServlet

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.