![JAR search and dependency download from the Maven repository](/logo.png)
com.ksyun.ks3.annotation.SdkProtectedApi Maven / Gradle / Ivy
package com.ksyun.ks3.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* Marker for elements that should only be accessed by the generated clients and not users of the
* SDK. Do not make breaking changes to these APIs - they won't directly break customers, but
* they'll break old versions of generated clients.
*
* TODO: Write a linter that makes sure generated code only depends on public or
* {@code @InternalApi} classes.
*/
@Target({ ElementType.PACKAGE, ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface SdkProtectedApi {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy