use of org.glassfish.jersey.examples.feedcombiner.MyApplication in project jersey by jersey.
the class CombinedFeedControllerTest method configure.
@Override
protected Application configure() {
enable(TestProperties.LOG_TRAFFIC);
enable(TestProperties.DUMP_ENTITY);
datastore = new ReadWriteLockDataStore();
return new MyApplication(datastore, false);
}
use of org.glassfish.jersey.examples.feedcombiner.MyApplication in project jersey by jersey.
the class CombinedFeedResourceTest method configure.
@Override
protected Application configure() {
enable(TestProperties.LOG_TRAFFIC);
enable(TestProperties.DUMP_ENTITY);
datastore = new ReadWriteLockDataStore();
return new MyApplication(datastore, false);
}
Aggregations