Interface AccountEmailOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
AccountEmail, AccountEmail.Builder

public interface AccountEmailOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Extra information that will be bundled in the session token.
    A valid RFC-5322 email address.
    com.google.protobuf.ByteString
    A valid RFC-5322 email address.
    A password for the user account.
    com.google.protobuf.ByteString
    A password for the user account.
    Deprecated.
    int
    Extra information that will be bundled in the session token.
    Extra information that will be bundled in the session token.
    getVarsOrDefault(String key, String defaultValue)
    Extra information that will be bundled in the session token.
    Extra information that will be bundled in the session token.

    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 Details

    • getEmail

      String getEmail()
       A valid RFC-5322 email address.
       
      string email = 1;
      Returns:
      The email.
    • getEmailBytes

      com.google.protobuf.ByteString getEmailBytes()
       A valid RFC-5322 email address.
       
      string email = 1;
      Returns:
      The bytes for email.
    • getPassword

      String getPassword()
       A password for the user account.
       
      string password = 2;
      Returns:
      The password.
    • getPasswordBytes

      com.google.protobuf.ByteString getPasswordBytes()
       A password for the user account.
       
      string password = 2;
      Returns:
      The bytes for password.
    • getVarsCount

      int getVarsCount()
       Extra information that will be bundled in the session token.
       
      map<string, string> vars = 3;
    • containsVars

      boolean containsVars(String key)
       Extra information that will be bundled in the session token.
       
      map<string, string> vars = 3;
    • getVars

      Deprecated.
      Use getVarsMap() instead.
    • getVarsMap

      Map<String,String> getVarsMap()
       Extra information that will be bundled in the session token.
       
      map<string, string> vars = 3;
    • getVarsOrDefault

      String getVarsOrDefault(String key, String defaultValue)
       Extra information that will be bundled in the session token.
       
      map<string, string> vars = 3;
    • getVarsOrThrow

      String getVarsOrThrow(String key)
       Extra information that will be bundled in the session token.
       
      map<string, string> vars = 3;