io.opensergo.proto.service_contract.v1.MethodOptionsOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: opensergo/proto/service_contract/v1/service_contract.proto
package io.opensergo.proto.service_contract.v1;
public interface MethodOptionsOrBuilder extends
// @@protoc_insertion_point(interface_extends:opensergo.proto.service_contract.v1.MethodOptions)
com.google.protobuf.MessageOrBuilder {
/**
*
* Is this method deprecated?
* Depending on the target platform, this can emit Deprecated annotations
* for the method, or it will be completely ignored; in the very least,
* this is a formalization for deprecating methods.
*
*
* optional bool deprecated = 33;
* @return Whether the deprecated field is set.
*/
boolean hasDeprecated();
/**
*
* Is this method deprecated?
* Depending on the target platform, this can emit Deprecated annotations
* for the method, or it will be completely ignored; in the very least,
* this is a formalization for deprecating methods.
*
*
* optional bool deprecated = 33;
* @return The deprecated.
*/
boolean getDeprecated();
/**
*
* The parser stores options it doesn't recognize here. See above.
*
*
* repeated .opensergo.proto.service_contract.v1.UninterpretedOption uninterpreted_option = 999;
*/
java.util.List
getUninterpretedOptionList();
/**
*
* The parser stores options it doesn't recognize here. See above.
*
*
* repeated .opensergo.proto.service_contract.v1.UninterpretedOption uninterpreted_option = 999;
*/
io.opensergo.proto.service_contract.v1.UninterpretedOption getUninterpretedOption(int index);
/**
*
* The parser stores options it doesn't recognize here. See above.
*
*
* repeated .opensergo.proto.service_contract.v1.UninterpretedOption uninterpreted_option = 999;
*/
int getUninterpretedOptionCount();
/**
*
* The parser stores options it doesn't recognize here. See above.
*
*
* repeated .opensergo.proto.service_contract.v1.UninterpretedOption uninterpreted_option = 999;
*/
java.util.List extends io.opensergo.proto.service_contract.v1.UninterpretedOptionOrBuilder>
getUninterpretedOptionOrBuilderList();
/**
*
* The parser stores options it doesn't recognize here. See above.
*
*
* repeated .opensergo.proto.service_contract.v1.UninterpretedOption uninterpreted_option = 999;
*/
io.opensergo.proto.service_contract.v1.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder(
int index);
}