本文整理汇总了Java中com.sun.jersey.api.model.AbstractResource类的典型用法代码示例。如果您正苦于以下问题:Java AbstractResource类的具体用法?Java AbstractResource怎么用?Java AbstractResource使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbstractResource类属于com.sun.jersey.api.model包,在下文中一共展示了AbstractResource类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testGetMetricIdClassWithPathMethodWithoutPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithPathMethodWithoutPath() {
AbstractResource resource = new AbstractResource(FooResource.class, new PathValue("/res"));
AbstractResourceMethod method =
new AbstractResourceMethod(resource, null, Void.class, Void.class, "GET", new Annotation[]{});
assertEquals("/res GET", namer.getTransactionName(method));
}
示例2: testGetMetricIdClassWithPathMethodWithPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithPathMethodWithPath() {
AbstractResource resource = new AbstractResource(FooResource.class, new PathValue("/res"));
AbstractResourceMethod method =
new AbstractSubResourceMethod(resource, null, Void.class, Void.class, new PathValue("/meth"), "GET",
new Annotation[]{});
assertEquals("/res/meth GET", namer.getTransactionName(method));
}
示例3: testGetMetricIdClassWithoutPathMethodWithPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithoutPathMethodWithPath() {
AbstractResource resource = new AbstractResource(FooResource.class, null);
AbstractResourceMethod method =
new AbstractSubResourceMethod(resource, null, Void.class, Void.class, new PathValue("/meth"), "GET",
new Annotation[]{});
assertEquals("/meth GET", namer.getTransactionName(method));
}
示例4: testGetMetricIdClassWithPathMethodWithoutPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithPathMethodWithoutPath() {
AbstractResource resource = new AbstractResource(FooResource.class, new PathValue("/res"));
AbstractResourceMethod method =
new AbstractResourceMethod(resource, null, Void.class, Void.class, "GET", new Annotation[]{});
assertEquals("/res GET", namer.getMetricBaseName(method));
}
示例5: testGetMetricIdClassWithPathMethodWithPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithPathMethodWithPath() {
AbstractResource resource = new AbstractResource(FooResource.class, new PathValue("/res"));
AbstractResourceMethod method =
new AbstractSubResourceMethod(resource, null, Void.class, Void.class, new PathValue("/meth"), "GET",
new Annotation[]{});
assertEquals("/res/meth GET", namer.getMetricBaseName(method));
}
示例6: testGetMetricIdClassWithoutPathMethodWithPath
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Test
public void testGetMetricIdClassWithoutPathMethodWithPath() {
AbstractResource resource = new AbstractResource(FooResource.class, null);
AbstractResourceMethod method =
new AbstractSubResourceMethod(resource, null, Void.class, Void.class, new PathValue("/meth"), "GET",
new Annotation[]{});
assertEquals("/meth GET", namer.getMetricBaseName(method));
}
示例7: RightCheckResourceFilter
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
public RightCheckResourceFilter(Right[] rights, AbstractResource resource) {
this.resource = resource;
rightList = new ArrayList<Right>(rights.length);
for (Right right : rights) {
rightList.add(right);
}
}
示例8: setup
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Before
public void setup() {
SecurityContextHolder.clearContext();
method = Mockito.mock(AbstractMethod.class);
AbstractResource res = new TestClass(this.getClass());
Mockito.when(method.getResource()).thenReturn(res);
}
示例9: getResource
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Override
public AbstractResource getResource() {
return abstractResourceMethod.getDeclaringResource();
}
示例10: getDeclaringResource
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Override
public AbstractResource getDeclaringResource() {
return abstractResourceMethod.getDeclaringResource();
}
示例11: createParam
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
@Override
public Param createParam(AbstractResource r, AbstractMethod m, final Parameter p) {
Param param = super.createParam(r, m, p);
return param;
}
示例12: getAbstractMethod
import com.sun.jersey.api.model.AbstractResource; //导入依赖的package包/类
private static AbstractResourceMethod getAbstractMethod(Class<?> resourceClass, Annotation[] methodAnnotations) {
return new AbstractResourceMethod(new AbstractResource(resourceClass), null, Void.class, Void.class, "GET",
methodAnnotations);
}