All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zalando.putittorest.annotation.RestClient Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package org.zalando.putittorest.annotation;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

import java.lang.annotation.Documented;
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;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Autowired
@Qualifier
@Inherited
@Documented
public @interface RestClient {

    /**
     * @see Qualifier#value
     */
    String value();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy