@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Nonbinding
Note this annotation class is borrowed from cdi-api.
Excludes a member of an annotation type (such as a qualifier type or
interceptor binding type) from consideration when the container compares two annotation
instances.
@Qualifier
@Retention(RUNTIME)
@Target({ METHOD, FIELD, PARAMETER, TYPE })
public @interface PayBy {
PaymentMethod value();
@Nonbinding
String comment();
}
@Qualifier,
@InterceptorBindingCopyright © 2016–2017 OSGL (Open Source General Library). All rights reserved.