本文整理汇总了Java中javax.ws.rs.container.PreMatching类的典型用法代码示例。如果您正苦于以下问题:Java PreMatching类的具体用法?Java PreMatching怎么用?Java PreMatching使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PreMatching类属于javax.ws.rs.container包,在下文中一共展示了PreMatching类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testAnnotations
import javax.ws.rs.container.PreMatching; //导入依赖的package包/类
@Test
public void testAnnotations() {
// Check that the class is correctly annotated
assertNotNull("@PreMatching annotation is required to modify headers", MediaTypeFilter.class.getAnnotation(PreMatching.class));
Priority priority = MediaTypeFilter.class.getAnnotation(Priority.class);
assertNotNull("@Priority annotation is required to modify headers", priority);
assertTrue("priority should be higher than HEADER_DECORATOR", priority.value() <= Priorities.HEADER_DECORATOR);
}