Skip to content

Commit 2e75f66

Browse files
committed
[FAB-16712] Update Java chaincode doc links
Signed-off-by: James Taylor <[email protected]> Change-Id: I8f09a953387cde9cbf69f39e361b216c5814b5db
1 parent 048351a commit 2e75f66

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/source/build_network.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Next, you can bring the network up with one of the following commands:
156156
157157
The above command will compile Golang chaincode images and spin up the corresponding
158158
containers. Go is the default chaincode language, however there is also support
159-
for `Node.js <https://fabric-shim.github.io/>`_ and `Java <https://fabric-chaincode-java.github.io/>`_
159+
for `Node.js <https://fabric-shim.github.io/>`_ and `Java <https://hyperledger.github.io/fabric-chaincode-java/>`_
160160
chaincode. If you'd like to run through this tutorial with node chaincode, pass
161161
the following command instead:
162162

@@ -171,7 +171,7 @@ the following command instead:
171171
`documentation <https://fabric-shim.github.io/ChaincodeInterface.html>`_.
172172

173173
.. note:: For more information on the Java shim, please refer to its
174-
`documentation <https://fabric-chaincode-java.github.io/org/hyperledger/fabric/shim/Chaincode.html>`_.
174+
`documentation <https://hyperledger.github.io/fabric-chaincode-java/master/api/org/hyperledger/fabric/shim/Chaincode.html>`_.
175175

176176
Тo make the sample run with Java chaincode, you have to specify ``-l java`` as follows:
177177

docs/source/chaincode4ade.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ documentation of the Chaincode Shim API for different languages below:
3131

3232
- `Go <https://godoc.org/github.com/hyperledger/fabric-chaincode-go/shim#Chaincode>`__
3333
- `node.js <https://fabric-shim.github.io/ChaincodeInterface.html>`__
34-
- `Java <https://fabric-chaincode-java.github.io/master/api/org/hyperledger/fabric/shim/Chaincode.html>`_
34+
- `Java <https://hyperledger.github.io/fabric-chaincode-java/master/api/org/hyperledger/fabric/shim/Chaincode.html>`_
3535

3636
In each language, the ``Invoke`` method is called by clients to submit transaction
3737
proposals. This method allows you to use the chaincode to read and write data on
@@ -55,7 +55,7 @@ The other interface in the chaincode "shim" APIs is the ``ChaincodeStubInterface
5555

5656
- `Go <https://godoc.org/github.com/hyperledger/fabric-chaincode-go/shim#ChaincodeStubInterface>`__
5757
- `node.js <https://fabric-shim.github.io/ChaincodeStub.html>`__
58-
- `Java <https://fabric-chaincode-java.github.io/master/api/org/hyperledger/fabric/shim/ChaincodeStub.html>`_
58+
- `Java <https://hyperledger.github.io/fabric-chaincode-java/master/api/org/hyperledger/fabric/shim/ChaincodeStub.html>`_
5959

6060
which is used to access and modify the ledger, and to make invocations between
6161
chaincodes.

docs/source/developapps/smartcontract.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ default contract class is useful in some smart contracts which have multiple con
9898
If you are using a TypeScript implementation, there are similar `@Contract(...)` annotations that fulfill the same purpose as in Java.
9999

100100
For more information on the available annotations, consult the available API documentation:
101-
* [API documentation for Java smart contracts](https://fabric-chaincode-java.github.io/)
101+
* [API documentation for Java smart contracts](https://hyperledger.github.io/fabric-chaincode-java/)
102102
* [API documentation for Node.js smart contracts](https://fabric-shim.github.io/)
103103

104104
These classes, annotations, and the `Context` class, were brought into scope earlier:

docs/source/getting_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ in various programming languages. Smart contract SDKs are available for Go, Node
2727

2828
* `Go SDK documentation <https://github.com/hyperledger/fabric-chaincode-go>`__.
2929
* `Node.js SDK <https://github.com/hyperledger/fabric-chaincode-node>`__ and `Node.js SDK documentation <https://fabric-shim.github.io/>`__.
30-
* `Java SDK <https://github.com/hyperledger/fabric-chaincode-java>`__ and `Java SDK documentation <https://fabric-chaincode-java.github.io/>`__.
30+
* `Java SDK <https://github.com/hyperledger/fabric-chaincode-java>`__ and `Java SDK documentation <https://hyperledger.github.io/fabric-chaincode-java/>`__.
3131

3232
Currently, Node.js and Java support the new smart contract programming model delivered in
3333
Hyperledger Fabric v1.4. Support for Go is planned to be delivered in a later release.

0 commit comments

Comments
 (0)