Skip to content

Commit 19de93e

Browse files
committed
Remove tctl references
1 parent 832785d commit 19de93e

File tree

9 files changed

+7
-22
lines changed

9 files changed

+7
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Temporal:
1515

1616
- [Temporal docs](https://docs.temporal.io/)
1717
- [Install Temporal Server](https://docs.temporal.io/docs/server/quick-install)
18-
- [Temporal CLI](https://docs.temporal.io/docs/devtools/tctl/)
18+
- [Temporal CLI](https://docs.temporal.io/cli/)
1919

2020
## Supported Java runtimes
2121

temporal-remote-data-encoder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## What problems does Remote Data Encoder (RDE) solves?
44

55
- Allows reuse of complicated encryption logic written once between different languages
6-
- Allows `tctl` to encode payloads for `tctl workflow start` and Temporal WebUI to decode encrypted payloads
6+
- Allows `Temporal CLI` to encode payloads for `temporal workflow start` and Temporal WebUI to decode encrypted payloads
77
- Allows the creation of a service that has an access to encryption keys for performing the encryption/decryption instead of a developer workstation or service accessing the keys directly.
88

99
## How does RDE work?
@@ -21,7 +21,7 @@ This module provides two reference implementations useful for creation of RDE se
2121
### RDE Codec
2222

2323
Can be used as one of the codecs in `io.temporal.common.converter.CodecDataConverter` configured on `WorkflowClientOptions#dataConverter` to use Remote Data Encoder Server for payloads encoding.
24-
Please keep in mind that this is an optional component. If you use RDE Server to decode data for tctl or WebUI purposes, you don't have to use it for encoding/decoding payloads on Workflow Client or Workers side. They may perform the encoding locally.
24+
Please keep in mind that this is an optional component. If you use RDE Server to decode data for Temporal CLI or WebUI purposes, you don't have to use it for encoding/decoding payloads on Workflow Client or Workers side. They may perform the encoding locally.
2525

2626
This module provides a reference implementation of RDE codec that should be used by users as a base for their own RDE codecs: `io.temporal.payload.codec.AbstractRemoteDataEncoderCodec` by implementing a POST method using the HTTP client of their choice.
2727
This module may supply some standard implementations for popular HTTP Clients, including `io.temporal.payload.codec.OkHttpRemoteDataEncoderCodec` for [OkHttpClient](https://square.github.io/okhttp/).

temporal-sdk/src/main/java/io/temporal/common/WorkflowExecutionHistory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public WorkflowExecutionHistory(History history, String workflowId) {
3636
}
3737

3838
/**
39-
* @param serialized history json (tctl format) to import and deserialize into {@link History}
39+
* @param serialized history json (temporal CLI format) to import and deserialize into {@link History}
4040
* @return WorkflowExecutionHistory
4141
*/
4242
public static WorkflowExecutionHistory fromJson(String serialized) {
@@ -56,7 +56,7 @@ public static WorkflowExecutionHistory fromJson(String serialized) {
5656
}
5757

5858
/**
59-
* @param serialized history json (tctl format) to import and deserialize into {@link History}
59+
* @param serialized history json (temporal CLI format) to import and deserialize into {@link History}
6060
* @param workflowId workflow id to be used in {@link #getWorkflowExecution()}
6161
* @return WorkflowExecutionHistory
6262
*/

temporal-sdk/src/main/java/io/temporal/common/converter/DefaultDataConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class DefaultDataConverter extends PayloadAndFailureDataConverter {
2828
*
2929
* <p>This data converter is also always used (regardless of whether or not users have supplied
3030
* their own converter) to perform serialization of values essential for functionality of Temporal
31-
* SDK, Server, tctl or WebUI:
31+
* SDK, Server, Temporal CLI or WebUI:
3232
*
3333
* <ul>
3434
* <li>Local Activity, Version, MutableSideEffect Markers metadata like id, time, name

temporal-sdk/src/main/java/io/temporal/internal/common/HistoryJsonUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Helper methods supporting transformation of History's "Proto Json" compatible format, which is
1111
* supported by {@link com.google.protobuf.util.JsonFormat} to the format of Temporal history
12-
* supported by tctl and back.
12+
* supported by Temporal CLI and back.
1313
*/
1414
public final class HistoryJsonUtils {
1515
private static final Configuration JSON_PATH_CONFIGURATION =

temporal-testing/src/main/java/io/temporal/testing/TestEnvironmentOptions.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,6 @@ public Builder setUseTimeskipping(boolean useTimeskipping) {
162162
* @param name name of the search attribute
163163
* @param type search attribute type
164164
* @return {@code this}
165-
* @see <a
166-
* href="https://docs.temporal.io/docs/tctl/how-to-add-a-custom-search-attribute-to-a-cluster-using-tctl">Add
167-
* a Custom Search Attribute Using tctl</a>
168165
*/
169166
public Builder registerSearchAttribute(String name, IndexedValueType type) {
170167
this.searchAttributes.put(name, type);

temporal-testing/src/main/java/io/temporal/testing/TestWorkflowEnvironment.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,6 @@ static TestWorkflowEnvironment newInstance(TestEnvironmentOptions options) {
134134
* @param name Search Attribute name
135135
* @param type Search Attribute type to be used for an elastic search index
136136
* @return {@code true} if the search attribute was registered, false if it was registered already
137-
* @see <a
138-
* href="https://docs.temporal.io/docs/tctl/how-to-add-a-custom-search-attribute-to-a-cluster-using-tctl">Add
139-
* a Custom Search Attribute Using tctl</a>
140137
*/
141138
boolean registerSearchAttribute(String name, IndexedValueType type);
142139

temporal-testing/src/main/java/io/temporal/testing/TestWorkflowExtension.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,6 @@ public Builder setUseTimeskipping(boolean useTimeskipping) {
502502
* @param name name of the search attribute
503503
* @param type search attribute type
504504
* @return {@code this}
505-
* @see <a
506-
* href="https://docs.temporal.io/docs/tctl/how-to-add-a-custom-search-attribute-to-a-cluster-using-tctl">Add
507-
* a Custom Search Attribute Using tctl</a>
508505
*/
509506
public Builder registerSearchAttribute(String name, IndexedValueType type) {
510507
this.searchAttributes.put(name, type);

temporal-testing/src/main/java/io/temporal/testing/TestWorkflowRule.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,6 @@ public Builder setDoNotSetupNexusEndpoint(boolean doNotSetupNexusEndpoint) {
335335
* @param name name of the search attribute
336336
* @param type search attribute type
337337
* @return {@code this}
338-
* @see <a
339-
* href="https://docs.temporal.io/docs/tctl/how-to-add-a-custom-search-attribute-to-a-cluster-using-tctl">Add
340-
* a Custom Search Attribute Using tctl</a>
341338
*/
342339
public Builder registerSearchAttribute(String name, IndexedValueType type) {
343340
this.searchAttributes.put(name, type);
@@ -349,9 +346,6 @@ public Builder registerSearchAttribute(String name, IndexedValueType type) {
349346
*
350347
* @param key key to register
351348
* @return {@code this}
352-
* @see <a
353-
* href="https://docs.temporal.io/docs/tctl/how-to-add-a-custom-search-attribute-to-a-cluster-using-tctl">Add
354-
* a Custom Search Attribute Using tctl</a>
355349
*/
356350
public Builder registerSearchAttribute(SearchAttributeKey<?> key) {
357351
return this.registerSearchAttribute(key.getName(), key.getValueType());

0 commit comments

Comments
 (0)