Skip to main content

TargetId

The replacement of Identifier in annotation.

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({})
public @interface TargetId {
/**
* The Namespace
*
* @return {@link String }
*/
String namespace() default "";

/**
* The Path
*
* @return {@link String }
*/
String value();
}