ru.concerteza.springtomcat.etomcat6.components.TestLogConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etomcat6-test Show documentation
Show all versions of etomcat6-test Show documentation
Tests for Apache Tomcat 6 embedded into Springframework context
package ru.concerteza.springtomcat.etomcat6.components;
import ru.concerteza.springtomcat.components.access.AccessConsumer;
import ru.concerteza.springtomcat.components.access.AccessEvent;
/**
* User: alexey
* Date: 3/1/12
*/
public class TestLogConsumer implements AccessConsumer {
private static AccessEvent lastEvent;
@Override
public void consume(AccessEvent event) {
TestLogConsumer.lastEvent = event;
}
public static AccessEvent getLastEvent() {
return lastEvent;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy