org.finos.tracdap.api.TracErrorDetailsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracdap-api-services Show documentation
Show all versions of tracdap-api-services Show documentation
TRAC D.A.P. platform API, contains service API definitions for the TRAC platform services
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: tracdap/api/error.proto
// Protobuf Java Version: 4.28.2
package org.finos.tracdap.api;
public interface TracErrorDetailsOrBuilder extends
// @@protoc_insertion_point(interface_extends:tracdap.api.TracErrorDetails)
com.google.protobuf.MessageOrBuilder {
/**
* int32 code = 1;
* @return The code.
*/
int getCode();
/**
* string message = 2;
* @return The message.
*/
java.lang.String getMessage();
/**
* string message = 2;
* @return The bytes for message.
*/
com.google.protobuf.ByteString
getMessageBytes();
/**
* repeated .tracdap.api.TracErrorItem items = 3;
*/
java.util.List
getItemsList();
/**
* repeated .tracdap.api.TracErrorItem items = 3;
*/
org.finos.tracdap.api.TracErrorItem getItems(int index);
/**
* repeated .tracdap.api.TracErrorItem items = 3;
*/
int getItemsCount();
/**
* repeated .tracdap.api.TracErrorItem items = 3;
*/
java.util.List extends org.finos.tracdap.api.TracErrorItemOrBuilder>
getItemsOrBuilderList();
/**
* repeated .tracdap.api.TracErrorItem items = 3;
*/
org.finos.tracdap.api.TracErrorItemOrBuilder getItemsOrBuilder(
int index);
}