org.hyperledger.fabric.sdk.LifecycleQueryChaincodeDefinitionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-sdk-java Show documentation
Show all versions of fabric-sdk-java Show documentation
Java SDK for Hyperledger Fabric. Deprecated as of Fabric v2.5, replaced by org.hyperledger.fabric:fabric-gateway.
/*
*
* Copyright IBM Corp. All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
* /
*/
package org.hyperledger.fabric.sdk;
import java.util.Collection;
/**
* Request for definitions of commited chaincode.
* See also {@link Channel#lifecycleQueryChaincodeDefinitions(LifecycleQueryChaincodeDefinitionsRequest, Collection)}
*/
public final class LifecycleQueryChaincodeDefinitionsRequest extends LifecycleRequest {
LifecycleQueryChaincodeDefinitionsRequest(User userContext) {
super(userContext, false);
}
}