Skip to content

Commit 84b842f

Browse files
authored
Update README.md
1 parent 56f1ed7 commit 84b842f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Tokens/stockpaydividend/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,27 +54,27 @@ We'll list the flows here in the order that they execute in our example.
5454

5555
##### Pre-requisite. IssueMoney - Bank
5656

57-
First, the bank issues money to WayneCo using [IssueMoney.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/IssueMoney.java#L37-L2)
57+
First, the bank issues money to WayneCo using [IssueMoney.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/IssueMoney.java#L37-L2)
5858

5959

6060
##### 1. IssueStock - Stock Issuer
6161
WayneCo creates a StockState and issues some stock tokens associated to the created StockState.
6262

63-
That stock is issused in [IssueStock.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/IssueStock.java#L57-L97).
63+
That stock is issused in [IssueStock.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/IssueStock.java#L57-L97).
6464

6565

6666
##### 2. MoveStock - Stock Issuer
6767

6868
WayneCo transfers some stock tokens to the Shareholder.
6969

7070

71-
This flow is in [MoveStock.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/MoveStock.java#L40-L53)
71+
This flow is in [MoveStock.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/MoveStock.java#L40-L53)
7272

7373

7474
##### 3. AnnounceDividend - Stock Issuer
7575
WayneCo announces the dividends that will be paid on the payday.
7676

77-
This happens through [AnnounceDividend.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/AnnounceDividend.java#L48-L77)
77+
This happens through [AnnounceDividend.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/AnnounceDividend.java#L48-L77)
7878

7979

8080

@@ -83,28 +83,28 @@ This happens through [AnnounceDividend.java](https://github.com/corda/samples-ja
8383
Shareholders retrieves the newest stock state from the company.
8484

8585

86-
We see this happen in [GetStockUpdate.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/GetStockUpdate.java#L33-L52)
86+
We see this happen in [GetStockUpdate.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/GetStockUpdate.java#L33-L52)
8787

8888

8989

9090
##### 5. ClaimDividendReceivable - Shareholder
9191

9292
Shareholders finds the dividend is announced and claims the dividends base on the owning stock.
9393

94-
Implemented in [ClaimDividendReceivable.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/ClaimDividendReceivable.java#L51-L96)
94+
Implemented in [ClaimDividendReceivable.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/ClaimDividendReceivable.java#L51-L96)
9595

9696

9797

9898
##### 6. PayDividend - Company
9999
On the payday, the company pay off the stock with fiat currencies.
100100

101101

102-
This is implemented in [PayDividend.java](https://github.com/corda/samples-java/blob/master/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/PayDividend.java#L46-L108).
102+
This is implemented in [PayDividend.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/PayDividend.java#L46-L108).
103103

104104
##### 7. Get token balances - Any node
105105
Query the balances of different nodes. This can be executed at anytime.
106106

107-
This is found in two different flows, where we make requests using `GetStockBalances` or `GetFiatBalances` for stock or fiat with [QueryStock.java](https://github.com/corda/samples-java/blob/5c0155784e8ca9df27dd5d4f9eca65e4cce4b11a/token-cordapps/stockpaydividend/workflows/src/main/java/net/corda/examples/stockpaydividend/flows/QueryStock.java)
107+
This is found in two different flows, where we make requests using `GetStockBalances` or `GetFiatBalances` for stock or fiat with [QueryStock.java](./workflows/src/main/java/net/corda/examples/stockpaydividend/flows/QueryStock.java)
108108

109109

110110
## Usage

0 commit comments

Comments
 (0)