com.bazaarvoice.emodb.auth.AuthZooKeeper Maven / Gradle / Ivy
package com.bazaarvoice.emodb.auth;
import com.google.inject.BindingAnnotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Annotation for the ZooKeeper curator namespaced for the authentication framework.
*/
@BindingAnnotation
@Target({ FIELD, PARAMETER, METHOD }) @Retention(RUNTIME)
public @interface AuthZooKeeper {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy