Annotation Type PublishableProxy
-
@Target(TYPE) @Retention(RUNTIME) public @interface PublishableProxy
Marks a class as being a publishable proxy for a non-publishable type, likeBooleanPublishable
forBoolean
. This annotation only has an affect when placed on a public, concrete, top-level class that implementsPublishable
.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.Class[]
value
The type(s) that the marked class is an publishable version of.
-