You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To ensure that this annotation will be easily visible to users and to grant the
possibility of programmatic response to launch stage, this shouldn't only be
a source-retained attribute.
Copy file name to clipboardExpand all lines: google-cloud-core/src/main/java/com/google/cloud/GcpLaunchStage.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ public class GcpLaunchStage {
34
34
* provisions). These features may be unstable, changed in backward-incompatible ways, and are not
35
35
* guaranteed to be released.
36
36
*/
37
-
@Retention(RetentionPolicy.SOURCE)
37
+
@Retention(RetentionPolicy.RUNTIME)
38
38
public @interface EarlyAccess {}
39
39
40
40
/**
@@ -46,7 +46,7 @@ public class GcpLaunchStage {
46
46
* that customers can actually use them in test environments or for limited-use tests -- just like
47
47
* they would in normal production cases.
48
48
*/
49
-
@Retention(RetentionPolicy.SOURCE)
49
+
@Retention(RetentionPolicy.RUNTIME)
50
50
public @interface Alpha {}
51
51
52
52
/**
@@ -55,7 +55,7 @@ public class GcpLaunchStage {
55
55
* cases. Products will be complete from a feature perspective, but may have some open outstanding
56
56
* issues. Beta releases are suitable for limited production use cases.
57
57
*/
58
-
@Retention(RetentionPolicy.SOURCE)
58
+
@Retention(RetentionPolicy.RUNTIME)
59
59
public @interface Beta {}
60
60
61
61
/**
@@ -64,7 +64,7 @@ public class GcpLaunchStage {
64
64
* and the <a href="https://cloud.google.com/terms/deprecation">Google Cloud Platform Subject to the Deprecation Policy</a>
0 commit comments