org.hyperledger.fabric.protos.peer.lifecycle.CommitChaincodeDefinitionArgsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-protos Show documentation
Show all versions of fabric-protos Show documentation
PROTO library for fabric-protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: peer/lifecycle/lifecycle.proto
package org.hyperledger.fabric.protos.peer.lifecycle;
public interface CommitChaincodeDefinitionArgsOrBuilder extends
// @@protoc_insertion_point(interface_extends:lifecycle.CommitChaincodeDefinitionArgs)
com.google.protobuf.MessageOrBuilder {
/**
* int64 sequence = 1 [json_name = "sequence"];
* @return The sequence.
*/
long getSequence();
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string version = 3 [json_name = "version"];
* @return The version.
*/
java.lang.String getVersion();
/**
* string version = 3 [json_name = "version"];
* @return The bytes for version.
*/
com.google.protobuf.ByteString
getVersionBytes();
/**
* string endorsement_plugin = 4 [json_name = "endorsementPlugin"];
* @return The endorsementPlugin.
*/
java.lang.String getEndorsementPlugin();
/**
* string endorsement_plugin = 4 [json_name = "endorsementPlugin"];
* @return The bytes for endorsementPlugin.
*/
com.google.protobuf.ByteString
getEndorsementPluginBytes();
/**
* string validation_plugin = 5 [json_name = "validationPlugin"];
* @return The validationPlugin.
*/
java.lang.String getValidationPlugin();
/**
* string validation_plugin = 5 [json_name = "validationPlugin"];
* @return The bytes for validationPlugin.
*/
com.google.protobuf.ByteString
getValidationPluginBytes();
/**
* bytes validation_parameter = 6 [json_name = "validationParameter"];
* @return The validationParameter.
*/
com.google.protobuf.ByteString getValidationParameter();
/**
* .protos.CollectionConfigPackage collections = 7 [json_name = "collections"];
* @return Whether the collections field is set.
*/
boolean hasCollections();
/**
* .protos.CollectionConfigPackage collections = 7 [json_name = "collections"];
* @return The collections.
*/
org.hyperledger.fabric.protos.peer.CollectionConfigPackage getCollections();
/**
* .protos.CollectionConfigPackage collections = 7 [json_name = "collections"];
*/
org.hyperledger.fabric.protos.peer.CollectionConfigPackageOrBuilder getCollectionsOrBuilder();
/**
* bool init_required = 8 [json_name = "initRequired"];
* @return The initRequired.
*/
boolean getInitRequired();
}