Package io.envoyproxy.envoy.admin.v3
Interface ListenerStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListenerStatus,ListenerStatus.Builder
public interface ListenerStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddressgetLocalAddress()The actual local address that the listener is listening on.AddressOrBuildergetLocalAddressOrBuilder()The actual local address that the listener is listening on.StringgetName()Name of the listenercom.google.protobuf.ByteStringgetNameBytes()Name of the listenerbooleanhasLocalAddress()The actual local address that the listener is listening on.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the listener
string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the listener
string name = 1;
-
hasLocalAddress
boolean hasLocalAddress()
The actual local address that the listener is listening on. If a listener was configured to listen on port 0, then this address has the port that was allocated by the OS.
.envoy.config.core.v3.Address local_address = 2;
-
getLocalAddress
Address getLocalAddress()
The actual local address that the listener is listening on. If a listener was configured to listen on port 0, then this address has the port that was allocated by the OS.
.envoy.config.core.v3.Address local_address = 2;
-
getLocalAddressOrBuilder
AddressOrBuilder getLocalAddressOrBuilder()
The actual local address that the listener is listening on. If a listener was configured to listen on port 0, then this address has the port that was allocated by the OS.
.envoy.config.core.v3.Address local_address = 2;
-
-