Interface Generated.ServerAddressByClientCIDROrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getClientCIDR()
      The CIDR with which clients can match their IP to figure out the server address that they should use.
      com.google.protobuf.ByteString getClientCIDRBytes()
      The CIDR with which clients can match their IP to figure out the server address that they should use.
      String getServerAddress()
      Address of this server, suitable for a client that matches the above CIDR.
      com.google.protobuf.ByteString getServerAddressBytes()
      Address of this server, suitable for a client that matches the above CIDR.
      boolean hasClientCIDR()
      The CIDR with which clients can match their IP to figure out the server address that they should use.
      boolean hasServerAddress()
      Address of this server, suitable for a client that matches the above CIDR.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasClientCIDR

        boolean hasClientCIDR()
         The CIDR with which clients can match their IP to figure out the server address that they should use.
         
        optional string clientCIDR = 1;
        Returns:
        Whether the clientCIDR field is set.
      • getClientCIDR

        String getClientCIDR()
         The CIDR with which clients can match their IP to figure out the server address that they should use.
         
        optional string clientCIDR = 1;
        Returns:
        The clientCIDR.
      • getClientCIDRBytes

        com.google.protobuf.ByteString getClientCIDRBytes()
         The CIDR with which clients can match their IP to figure out the server address that they should use.
         
        optional string clientCIDR = 1;
        Returns:
        The bytes for clientCIDR.
      • hasServerAddress

        boolean hasServerAddress()
         Address of this server, suitable for a client that matches the above CIDR.
         This can be a hostname, hostname:port, IP or IP:port.
         
        optional string serverAddress = 2;
        Returns:
        Whether the serverAddress field is set.
      • getServerAddress

        String getServerAddress()
         Address of this server, suitable for a client that matches the above CIDR.
         This can be a hostname, hostname:port, IP or IP:port.
         
        optional string serverAddress = 2;
        Returns:
        The serverAddress.
      • getServerAddressBytes

        com.google.protobuf.ByteString getServerAddressBytes()
         Address of this server, suitable for a client that matches the above CIDR.
         This can be a hostname, hostname:port, IP or IP:port.
         
        optional string serverAddress = 2;
        Returns:
        The bytes for serverAddress.