|
@@ -0,0 +1,15 @@
|
|
|
|
|
+package com.usoftchina.saas.transfers.auth;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+import com.usoftchina.saas.transfers.auth.configuration.OpenApiConfiguration;
|
|
|
|
|
+import org.springframework.context.annotation.Import;
|
|
|
|
|
+
|
|
|
|
|
+import java.lang.annotation.*;
|
|
|
|
|
+
|
|
|
|
|
+@Target(ElementType.TYPE)
|
|
|
|
|
+@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
|
+@Import(OpenApiConfiguration.class)
|
|
|
|
|
+@Documented
|
|
|
|
|
+@Inherited
|
|
|
|
|
+public @interface EnableOpenApiAuthClient {
|
|
|
|
|
+}
|