org.finos.tracdap.config.RouteConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracdap-api-config Show documentation
Show all versions of tracdap-api-config Show documentation
TRAC D.A.P. config library, contains data structures used for config files (and other config sources)
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: tracdap/config/platform.proto
// Protobuf Java Version: 4.28.2
package org.finos.tracdap.config;
public interface RouteConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:tracdap.config.RouteConfig)
com.google.protobuf.MessageOrBuilder {
/**
* string routeName = 1;
* @return The routeName.
*/
java.lang.String getRouteName();
/**
* string routeName = 1;
* @return The bytes for routeName.
*/
com.google.protobuf.ByteString
getRouteNameBytes();
/**
* .tracdap.config.RoutingProtocol routeType = 2;
* @return The enum numeric value on the wire for routeType.
*/
int getRouteTypeValue();
/**
* .tracdap.config.RoutingProtocol routeType = 2;
* @return The routeType.
*/
org.finos.tracdap.config.RoutingProtocol getRouteType();
/**
* repeated .tracdap.config.RoutingProtocol protocols = 3;
* @return A list containing the protocols.
*/
java.util.List getProtocolsList();
/**
* repeated .tracdap.config.RoutingProtocol protocols = 3;
* @return The count of protocols.
*/
int getProtocolsCount();
/**
* repeated .tracdap.config.RoutingProtocol protocols = 3;
* @param index The index of the element to return.
* @return The protocols at the given index.
*/
org.finos.tracdap.config.RoutingProtocol getProtocols(int index);
/**
* repeated .tracdap.config.RoutingProtocol protocols = 3;
* @return A list containing the enum numeric values on the wire for protocols.
*/
java.util.List
getProtocolsValueList();
/**
* repeated .tracdap.config.RoutingProtocol protocols = 3;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of protocols at the given index.
*/
int getProtocolsValue(int index);
/**
* .tracdap.config.RoutingMatch match = 5;
* @return Whether the match field is set.
*/
boolean hasMatch();
/**
* .tracdap.config.RoutingMatch match = 5;
* @return The match.
*/
org.finos.tracdap.config.RoutingMatch getMatch();
/**
* .tracdap.config.RoutingMatch match = 5;
*/
org.finos.tracdap.config.RoutingMatchOrBuilder getMatchOrBuilder();
/**
* .tracdap.config.RoutingTarget target = 6;
* @return Whether the target field is set.
*/
boolean hasTarget();
/**
* .tracdap.config.RoutingTarget target = 6;
* @return The target.
*/
org.finos.tracdap.config.RoutingTarget getTarget();
/**
* .tracdap.config.RoutingTarget target = 6;
*/
org.finos.tracdap.config.RoutingTargetOrBuilder getTargetOrBuilder();
}