org.polypheny.prism.ConnectionResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polypheny-jdbc-driver Show documentation
Show all versions of polypheny-jdbc-driver Show documentation
A standards-compliant JDBC driver for Polypheny-DB.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: org/polypheny/prism/connection_responses.proto
package org.polypheny.prism;
public interface ConnectionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:org.polypheny.prism.ConnectionResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*Indicates whether the client’s API version is compatible with the server.
*If true, the connection can proceed; if false, the client should consider updating or downgrading its API version.
*
*
* bool is_compatible = 1;
* @return The isCompatible.
*/
boolean getIsCompatible();
/**
*
* The major version number of the server’s API. Helps the client ascertain the API level of the server.
*
*
* int32 major_api_version = 2;
* @return The majorApiVersion.
*/
int getMajorApiVersion();
/**
*
* The minor version number of the server’s API. Provides finer granularity about the server’s capabilities.
*
*
* int32 minor_api_version = 3;
* @return The minorApiVersion.
*/
int getMinorApiVersion();
}