Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.temporal.workflow;

import io.temporal.common.Experimental;
import java.util.Objects;

/** MutableSideEffectOptions is used to specify options for a side effect. */
Expand Down Expand Up @@ -42,7 +41,6 @@ private Builder(MutableSideEffectOptions options) {
*
* <p>Default is none/empty.
*/
@Experimental
public MutableSideEffectOptions.Builder setSummary(String summary) {
this.summary = summary;
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ public NexusOperationOptions.Builder setCancellationType(
*
* <p>Default is none/empty.
*/
@Experimental
public NexusOperationOptions.Builder setSummary(String summary) {
this.summary = summary;
return this;
Expand Down Expand Up @@ -199,7 +198,6 @@ public NexusOperationCancellationType getCancellationType() {
return cancellationType;
}

@Experimental
public String getSummary() {
return summary;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.temporal.workflow;

import io.temporal.common.Experimental;
import java.util.Objects;

/** SideEffectOptions is used to specify options for a side effect. */
Expand Down Expand Up @@ -42,7 +41,6 @@ private Builder(SideEffectOptions options) {
*
* <p>Default is none/empty.
*/
@Experimental
public SideEffectOptions.Builder setSummary(String summary) {
this.summary = summary;
return this;
Expand Down
Loading