diff --git a/core/src/main/java/io/temporal/samples/nexus/caller/EchoCallerWorkflowImpl.java b/core/src/main/java/io/temporal/samples/nexus/caller/EchoCallerWorkflowImpl.java index 7c5d5f78..942664e7 100644 --- a/core/src/main/java/io/temporal/samples/nexus/caller/EchoCallerWorkflowImpl.java +++ b/core/src/main/java/io/temporal/samples/nexus/caller/EchoCallerWorkflowImpl.java @@ -16,7 +16,7 @@ * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ - +// @@@SNIPSTART samples-java-nexus-caller-echo-workflow package io.temporal.samples.nexus.caller; import io.temporal.samples.nexus.service.NexusService; @@ -41,3 +41,4 @@ public String echo(String message) { return nexusService.echo(new NexusService.EchoInput(message)).getMessage(); } } +// @@@SNIPEND diff --git a/core/src/main/java/io/temporal/samples/nexus/caller/HelloCallerWorkflowImpl.java b/core/src/main/java/io/temporal/samples/nexus/caller/HelloCallerWorkflowImpl.java index dcc8d1a0..ce43b719 100644 --- a/core/src/main/java/io/temporal/samples/nexus/caller/HelloCallerWorkflowImpl.java +++ b/core/src/main/java/io/temporal/samples/nexus/caller/HelloCallerWorkflowImpl.java @@ -16,7 +16,7 @@ * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ - +// @@@SNIPSTART samples-java-nexus-caller-hello-workflow package io.temporal.samples.nexus.caller; import io.temporal.samples.nexus.service.NexusService; @@ -48,3 +48,4 @@ public String hello(String message, NexusService.Language language) { return handle.getResult().get().getMessage(); } } +// @@@SNIPEND