> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.apache.jclouds.oneandone.rest.config;
> +
> +import java.lang.annotation.ElementType;
> +import java.lang.annotation.Retention;
> +import java.lang.annotation.RetentionPolicy;
> +import java.lang.annotation.Target;
> +import javax.inject.Qualifier;
> +
> +@Retention(value = RetentionPolicy.RUNTIME)
> +@Target(value = {ElementType.TYPE, ElementType.FIELD, ElementType.PARAMETER,
> ElementType.METHOD})
> +@Qualifier
> +public @interface Authentication {
> +}
Is this class actually used? If not, please remove it.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68665804