Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 21132f4

Browse files
Document deprecation as of Fabric v2.5 (#157)
Signed-off-by: Mark S. Lewis <[email protected]>
1 parent 2227778 commit 21132f4

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hyperledger Fabric Gateway SDK for Java <a href="https://github.com/hyperledger/fabric-gateway-java/actions/workflows/schedule.yml"><img src="https://github.com/hyperledger/fabric-gateway-java/actions/workflows/schedule.yml/badge.svg" alt="Build status" style="float: right"></a>
22

3-
> **Note:** When developing applications for Hyperledger Fabric v2.4 and later, you should use the [Fabric Gateway client API](https://hyperledger.github.io/fabric-gateway/).
3+
> **Note:** This API is deprecated as of Fabric v2.5. When developing applications for Hyperledger Fabric v2.4 and later, you should use the [Fabric Gateway client API](https://hyperledger.github.io/fabric-gateway/).
44
55
The Fabric Gateway SDK allows applications to interact with a Fabric blockchain network. It provides a simple API to submit transactions to a ledger or query the contents of a ledger with minimal code.
66

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<packaging>jar</packaging>
1212

1313
<name>fabric-gateway-java</name>
14-
<description>Simple API for interacting with Hyperledger Fabric blockchain networks</description>
14+
<description>Simple API for interacting with Hyperledger Fabric blockchain networks. Deprecated as of Fabric v2.5, replaced by org.hyperledger.fabric:fabric-gateway.</description>
1515
<url>https://hyperledger.github.io/fabric-gateway-java/</url>
1616

1717
<licenses>

src/main/java/org/hyperledger/fabric/gateway/package-info.java

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
* <a href="https://hyperledger-fabric.readthedocs.io/en/release-1.4/developapps/developing_applications.html">Developing Applications</a>
1313
* chapter of the Fabric documentation.</p>
1414
*
15+
*
1516
* @see <a href="https://hyperledger-fabric.readthedocs.io/en/release-1.4/developapps/developing_applications.html">Developing Fabric Applications</a>
17+
* @deprecated As of Fabric v2.5, replaced by the <a href="https://hyperledger.github.io/fabric-gateway/">Fabric Gateway client API</a>.
1618
*/
1719
package org.hyperledger.fabric.gateway;

src/main/java/org/hyperledger/fabric/gateway/spi/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
* <p>This package provides the set of interfaces that enable a Java developer to
99
* extend the set of built in handlers for controlling gateway strategies.
1010
*
11-
*
11+
* @deprecated As of Fabric v2.5, replaced by the <a href="https://hyperledger.github.io/fabric-gateway/">Fabric Gateway client API</a>.
1212
*/
1313
package org.hyperledger.fabric.gateway.spi;

src/main/javadoc/overview.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<title>API Overview</title>
55
</head>
66
<body>
7+
<p><strong>Note:</strong> this API is deprecated as of Fabric v2.5, replaced by the <a href="https://hyperledger.github.io/fabric-gateway/">Fabric Gateway client API</a>.</p>
78
<p>
8-
The Fabric Gateway SDK allows applications to interact with a Fabric blockchain network.
9+
The Fabric Gateway SDK allows applications to interact with a Fabric blockchain network.
910
It provides a simple API to submit transactions to a ledger or query the contents of a ledger with minimal code.
1011
The Gateway SDK implements the Fabric programming model as described in the
1112
<a href="https://hyperledger-fabric.readthedocs.io/en/latest/developapps/developing_applications.html">Developing Applications</a>

0 commit comments

Comments
 (0)