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

com.github.bingoohuang.springrestclient.annotations.SpringRestClientEnabled Maven / Gradle / Ivy

There is a newer version: 0.0.23
Show newest version
package com.github.bingoohuang.springrestclient.annotations;

import com.github.bingoohuang.springrestclient.provider.BaseUrlProvider;
import com.github.bingoohuang.springrestclient.provider.SignProvider;

import java.lang.annotation.*;

@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface SpringRestClientEnabled {
    boolean createClassFileForDiagnose() default false;

    String baseUrl() default "";

    Class baseUrlProvider() default BaseUrlProvider.class;

    Class signProvider() default SignProvider.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy