Interface TlsOrBuilder (0.3.0)

public interface TlsOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getCipher()

public abstract String getCipher()

Cipher used during the connection.

string cipher = 3;

Returns
Type Description
String

The cipher.

getCipherBytes()

public abstract ByteString getCipherBytes()

Cipher used during the connection.

string cipher = 3;

Returns
Type Description
ByteString

The bytes for cipher.

getClient()

public abstract Tls.Client getClient()

Certificate information for the client certificate.

.google.backstory.Tls.Client client = 1;

Returns
Type Description
Tls.Client

The client.

getClientOrBuilder()

public abstract Tls.ClientOrBuilder getClientOrBuilder()

Certificate information for the client certificate.

.google.backstory.Tls.Client client = 1;

Returns
Type Description
Tls.ClientOrBuilder

getCurve()

public abstract String getCurve()

Elliptical curve used for a given cipher.

string curve = 4;

Returns
Type Description
String

The curve.

getCurveBytes()

public abstract ByteString getCurveBytes()

Elliptical curve used for a given cipher.

string curve = 4;

Returns
Type Description
ByteString

The bytes for curve.

getEstablished()

public abstract boolean getEstablished()

Indicates whether the TLS negotiation was successful.

bool established = 7;

Returns
Type Description
boolean

The established.

getNextProtocol()

public abstract String getNextProtocol()

Protocol to be used for tunnel.

string next_protocol = 8;

Returns
Type Description
String

The nextProtocol.

getNextProtocolBytes()

public abstract ByteString getNextProtocolBytes()

Protocol to be used for tunnel.

string next_protocol = 8;

Returns
Type Description
ByteString

The bytes for nextProtocol.

getResumed()

public abstract boolean getResumed()

Indicates whether the TLS connection was resumed from a previous TLS negotiation.

bool resumed = 9;

Returns
Type Description
boolean

The resumed.

getServer()

public abstract Tls.Server getServer()

Certificate information for the server certificate.

.google.backstory.Tls.Server server = 2;

Returns
Type Description
Tls.Server

The server.

getServerOrBuilder()

public abstract Tls.ServerOrBuilder getServerOrBuilder()

Certificate information for the server certificate.

.google.backstory.Tls.Server server = 2;

Returns
Type Description
Tls.ServerOrBuilder

getVersion()

public abstract String getVersion()

TLS version.

string version = 5;

Returns
Type Description
String

The version.

getVersionBytes()

public abstract ByteString getVersionBytes()

TLS version.

string version = 5;

Returns
Type Description
ByteString

The bytes for version.

getVersionProtocol()

public abstract String getVersionProtocol()

Protocol.

string version_protocol = 6;

Returns
Type Description
String

The versionProtocol.

getVersionProtocolBytes()

public abstract ByteString getVersionProtocolBytes()

Protocol.

string version_protocol = 6;

Returns
Type Description
ByteString

The bytes for versionProtocol.

hasClient()

public abstract boolean hasClient()

Certificate information for the client certificate.

.google.backstory.Tls.Client client = 1;

Returns
Type Description
boolean

Whether the client field is set.

hasServer()

public abstract boolean hasServer()

Certificate information for the server certificate.

.google.backstory.Tls.Server server = 2;

Returns
Type Description
boolean

Whether the server field is set.