use of org.glassfish.jersey.tests.e2e.entity.filtering.DefaultFilteringScope in project jersey by jersey.
the class JsonEntityFilteringClientTest method testEntityAnnotationsDefaultView.
@Test
public void testEntityAnnotationsDefaultView() throws Exception {
final OneFilteringOnClassEntity entity = target().request().post(Entity.entity(OneFilteringOnClassEntity.INSTANCE, MediaType.APPLICATION_JSON_TYPE, new Annotation[] { new DefaultFilteringScope() }), OneFilteringOnClassEntity.class);
_testEmptyEntity(entity);
}
Aggregations