JaxrsDescribe.java 428 字节
Newer Older
R
test  
roo00 已提交
1 2 3 4 5 6 7 8 9 10 11 12
package com.x.base.core.project.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface JaxrsDescribe {
Z
zhourui 已提交
13

R
test  
roo00 已提交
14
	String value();
Z
zhourui 已提交
15 16

	DescribeScope scope() default DescribeScope.commonly;
R
test  
roo00 已提交
17
}