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

org.hyperledger.fabric.sdk.LifecycleQueryInstalledChaincodeRequest 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;

import org.hyperledger.fabric.sdk.exception.InvalidArgumentException;
import org.hyperledger.fabric.sdk.helper.Utils;

/**
 * Request to get a {@link LifecycleQueryInstalledChaincodeProposalResponse} for a specific packageId
 */
public class LifecycleQueryInstalledChaincodeRequest extends LifecycleRequest {
    private String packageId;

    LifecycleQueryInstalledChaincodeRequest(User userContext) {
        super(userContext, false);
    }

    String getPackageId() {
        return packageId;
    }

    /**
     * The packageId of the chaincode to query. Sent to peer to get a {@link LifecycleQueryInstalledChaincodeProposalResponse}
     *
     * @param packageId
     * @throws InvalidArgumentException
     */
    public void setPackageID(String packageId) throws InvalidArgumentException {

        if (Utils.isNullOrEmpty(packageId)) {
            throw new InvalidArgumentException("The packageId parameter can not be null or empty.");
        }
        this.packageId = packageId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy