Skip to content

Commit 9ed9ff5

Browse files
committed
JCBC-1179: Mark N1qlParams as uncommitted.
Since new API shouldn't be marked as insta-stable, the new n1ql profiling API is marked as uncomitted for release25 and will be promoted to stable later. Change-Id: I3762b2081be658879867e86776367723cf341ca2 Reviewed-on: http://review.couchbase.org/92028 Reviewed-by: Michael Nitschinger <[email protected]> Tested-by: Michael Nitschinger <[email protected]>
1 parent 037f725 commit 9ed9ff5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/main/java/com/couchbase/client/java/query/N1qlParams.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ public N1qlParams pipelineCap(int pipelineCap) {
421421
* @param profile the profile param {@link N1qlProfile}.
422422
* @return this {@link N1qlParams} for chaining.
423423
*/
424+
@InterfaceStability.Uncommitted
424425
public N1qlParams profile(N1qlProfile profile) {
425426
this.profile = profile;
426427
return this;

src/main/java/com/couchbase/client/java/query/N1qlProfile.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@
1515
*/
1616
package com.couchbase.client.java.query;
1717

18+
import com.couchbase.client.core.annotations.InterfaceAudience;
19+
import com.couchbase.client.core.annotations.InterfaceStability;
20+
1821
/**
1922
* N1ql profile options
2023
*/
24+
@InterfaceStability.Uncommitted
25+
@InterfaceAudience.Public
2126
public enum N1qlProfile {
2227

2328
/**

0 commit comments

Comments
 (0)