All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperledger.fabric.sdk.transaction.LifecycleQueryInstalledChaincodesBuilder Maven / Gradle / Ivy

Go to download

Java SDK for Hyperledger Fabric. Deprecated as of Fabric v2.5, replaced by org.hyperledger.fabric:fabric-gateway.

There is a newer version: 2.2.26
Show newest version
/*
 *
 * Copyright IBM Corp. All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 * /
 */

package org.hyperledger.fabric.sdk.transaction;

import java.util.ArrayList;
import java.util.List;

import com.google.protobuf.ByteString;
import org.hyperledger.fabric.protos.peer.lifecycle.Lifecycle;

public class LifecycleQueryInstalledChaincodesBuilder extends LifecycleProposalBuilder {

    private LifecycleQueryInstalledChaincodesBuilder() {
        List argList = new ArrayList<>();
        argList.add(ByteString.copyFromUtf8("QueryInstalledChaincodes"));
        argList.add(Lifecycle.QueryInstalledChaincodesArgs.getDefaultInstance().toByteString());
        args(argList);
    }

    @Override
    public LifecycleQueryInstalledChaincodesBuilder context(TransactionContext context) {
        super.context(context);
        return this;
    }

    public static LifecycleQueryInstalledChaincodesBuilder newBuilder() {
        return new LifecycleQueryInstalledChaincodesBuilder();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy