Skip to content

Commit 6f067ba

Browse files
authored
Fix repo URLs in README.md
1 parent ba05d73 commit 6f067ba

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

README.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
These samples demonstrate various capabilities of Java Temporal client and server. You can learn more about Temporal at:
33
* [temporal.io](https://temporal.io)
44
* [Temporal Service](https://github.com/temporalio/temporal)
5-
* [Temporal Java SDK](https://github.com/temporalio/temporal-java-sdk)
6-
* [Temporal Go SDK](https://github.com/temporalio/temporal-go-sdk)
5+
* [Temporal Java SDK](https://github.com/temporalio/sdk-java)
6+
* [Temporal Go SDK](https://github.com/temporalio/sdk-go)
77

88
## Setup
99

@@ -23,8 +23,8 @@ To solve the problem add the following entries to your `/etc/hosts` file (where
2323

2424
Run the following commands:
2525

26-
git clone https://github.com/temporalio/java-samples
27-
cd java-samples
26+
git clone https://github.com/temporalio/samples-java
27+
cd samples-java
2828

2929
### Build the Samples
3030

@@ -68,28 +68,28 @@ of details about the execution history.
6868
Each sample has specific requirements for running it. The following sections contain information about
6969
how to run each of the samples after you've built them using the preceding instructions.
7070

71-
Don't forget to check unit tests found under [src/test/java](https://github.com/temporalio/java-samples/tree/master/src/test/java/io/temporal/samples)!
71+
Don't forget to check unit tests found under [src/test/java](https://github.com/temporalio/samples-java/tree/master/src/test/java/io/temporal/samples)!
7272

7373
### HelloWorld
7474

7575
Each Hello World sample demonstrates one feature of the SDK in a single file. Note that single file format is
7676
used for sample brevity and is not something we recommend for real applications.
7777

78-
* **[HelloActivity](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloActivity.java)**: a single activity workflow
79-
* **[HelloActivityRetry](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloActivityRetry.java)**: how to retry an activity
80-
* **[HelloAsync](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloAsync.java)**: how to call activities asynchronously and wait for them using Promises
81-
* **[HelloAsyncActivityCompletion](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloAsyncActivityCompletion.java)**: an asynchronous activity implementation
82-
* **[HelloAsyncLambda](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloAsyncLambda.java)**: how to run part of a workflow asynchronously in a separate task (thread)
83-
* **[HelloCancellationScope](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloCancellationScope.java)**: how to explicitly cancel parts of a workflow
84-
* **[HelloChild](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloChild.java)**: a child workflow
85-
* **[HelloCron](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloCron.java)**: a workflow that is executed according to a cron schedule
86-
* **[HelloPeriodic](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloPeriodic.java)**: a workflow that executes some logic periodically
87-
* **[HelloException](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloException.java)**: exception propagation and wrapping
88-
* **[HelloPolymorphicActivity](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloPolymorphicActivity.java)**: activities that extend a common interface
89-
* **[HelloQuery](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloQuery.java)**: demonstrates how to query a state of a single workflow
90-
* **[HelloSignal](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloSignal.java)**: sending and handling a signal
91-
* **[HelloSaga](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloSaga.java)**: SAGA pattern support
92-
* **[HelloSearchAttributes](https://github.com/temporalio/java-samples/blob/master/src/main/java/io/temporal/samples/hello/HelloSearchAttributes.java)**: Custom search attributes that can be used to find workflows using predicates
78+
* **[HelloActivity](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloActivity.java)**: a single activity workflow
79+
* **[HelloActivityRetry](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloActivityRetry.java)**: how to retry an activity
80+
* **[HelloAsync](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloAsync.java)**: how to call activities asynchronously and wait for them using Promises
81+
* **[HelloAsyncActivityCompletion](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloAsyncActivityCompletion.java)**: an asynchronous activity implementation
82+
* **[HelloAsyncLambda](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloAsyncLambda.java)**: how to run part of a workflow asynchronously in a separate task (thread)
83+
* **[HelloCancellationScope](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloCancellationScope.java)**: how to explicitly cancel parts of a workflow
84+
* **[HelloChild](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloChild.java)**: a child workflow
85+
* **[HelloCron](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloCron.java)**: a workflow that is executed according to a cron schedule
86+
* **[HelloPeriodic](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloPeriodic.java)**: a workflow that executes some logic periodically
87+
* **[HelloException](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloException.java)**: exception propagation and wrapping
88+
* **[HelloPolymorphicActivity](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloPolymorphicActivity.java)**: activities that extend a common interface
89+
* **[HelloQuery](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloQuery.java)**: demonstrates how to query a state of a single workflow
90+
* **[HelloSignal](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloSignal.java)**: sending and handling a signal
91+
* **[HelloSaga](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloSaga.java)**: SAGA pattern support
92+
* **[HelloSearchAttributes](https://github.com/temporalio/samples-java/blob/master/src/main/java/io/temporal/samples/hello/HelloSearchAttributes.java)**: Custom search attributes that can be used to find workflows using predicates
9393

9494
To run the hello world samples:
9595

@@ -110,7 +110,7 @@ used for sample brevity and is not something we recommend for real applications.
110110
./gradlew -q execute -PmainClass=io.temporal.samples.hello.HelloSearchAttributes
111111

112112
### File Processing
113-
[FileProcessing](https://github.com/temporalio/java-samples/tree/master/src/main/java/io/temporal/samples/fileprocessing)
113+
[FileProcessing](https://github.com/temporalio/samples-java/tree/master/src/main/java/io/temporal/samples/fileprocessing)
114114
demonstrates task routing features. The sample workflow downloads a file, processes it, and uploads the result to a destination. Any worker can pick up the first activity. However, the second and third activity must be executed on the same host as the first one.
115115

116116
The sample has two executables. Execute each command in a separate terminal window. The first command
@@ -125,7 +125,7 @@ The second command starts workflows. Each invocation starts a new workflow execu
125125

126126
### Booking SAGA
127127

128-
[Booking SAGA](https://github.com/temporalio/java-samples/tree/master/src/main/java/io/temporal/samples/bookingsaga)
128+
[Booking SAGA](https://github.com/temporalio/samples-java/tree/master/src/main/java/io/temporal/samples/bookingsaga)
129129
is a Temporal take on Camunda BPMN trip booking example.
130130

131131
To run:
@@ -134,7 +134,7 @@ To run:
134134

135135
### Money Transfer
136136

137-
Basic [Money Transfer](https://github.com/temporalio/java-samples/tree/master/src/main/java/io/temporal/samples/moneytransfer) example.
137+
Basic [Money Transfer](https://github.com/temporalio/samples-java/tree/master/src/main/java/io/temporal/samples/moneytransfer) example.
138138

139139
Money Transfer example has three separate processes. One to host workflow code,
140140
another activity, and the third one to request transfers.
@@ -153,7 +153,7 @@ Execute once per requested transfer:
153153

154154
### Money Batch
155155

156-
[The sample](https://github.com/temporalio/java-samples/tree/master/src/main/java/io/temporal/samples/moneybatch)
156+
[The sample](https://github.com/temporalio/samples-java/tree/master/src/main/java/io/temporal/samples/moneybatch)
157157
demonstrates a situation when a single deposit should be initiated for multiple withdrawals.
158158
For example, a seller might want to be paid once per fixed number of transactions.
159159
The sample can be easily extended to perform a payment based on more complex criteria like a specific time
@@ -180,7 +180,7 @@ Execute at least three times to request three transfers (example batch size):
180180

181181
### Updatable Timer
182182

183-
The [Updatable Timer](https://github.com/temporalio/java-samples/tree/master/src/main/java/io/temporal/samples/updatabletimer) sample
183+
The [Updatable Timer](https://github.com/temporalio/samples-java/tree/master/src/main/java/io/temporal/samples/updatabletimer) sample
184184
demonstrates a helper class which relies on Workflow.await to implement a blocking sleep that can be updated at any moment.
185185

186186
Money Batch example has three separate processes. One to host workflow code,

0 commit comments

Comments
 (0)