We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f55142 commit f8a4c04Copy full SHA for f8a4c04
openapi-parser/src/main/java/io/openapiparser/support/Experimental.java
@@ -8,10 +8,9 @@
8
import java.lang.annotation.*;
9
10
/**
11
- * marks experimental apis that should not (yet..) be used in production code. It is used for
12
- * documentation only.
+ * Marks an experimental api (it has to show that it works in real life). Use at your own risk.
13
*/
14
@Documented
15
@Retention (RetentionPolicy.RUNTIME)
16
-@Target({ElementType.METHOD})
+@Target({ElementType.TYPE, ElementType.METHOD})
17
public @interface Experimental {}
0 commit comments