org.codehaus.httpcache4j.annotation.Internal Maven / Gradle / Ivy
The newest version!
package org.codehaus.httpcache4j.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Anything annotated with this one should be considered an internal API.
*
* @author Erlend Hamnaberg
*/
@Retention(value = RetentionPolicy.SOURCE)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface Internal {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy