Class PasswordLeakVerification.Builder

    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • getDefaultInstanceForType

        public PasswordLeakVerification getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public PasswordLeakVerification build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public PasswordLeakVerification buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • setRepeatedField

        public PasswordLeakVerification.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                                 int index,
                                                                 Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • addRepeatedField

        public PasswordLeakVerification.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                                 Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • mergeFrom

        public PasswordLeakVerification.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                   throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<PasswordLeakVerification.Builder>
        Throws:
        IOException
      • getHashedUserCredentials

        public com.google.protobuf.ByteString getHashedUserCredentials()
         Optional. Scrypt hash of the username+password that the customer wants to
         verify against a known password leak.
         
        bytes hashed_user_credentials = 1 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getHashedUserCredentials in interface PasswordLeakVerificationOrBuilder
        Returns:
        The hashedUserCredentials.
      • setHashedUserCredentials

        public PasswordLeakVerification.Builder setHashedUserCredentials​(com.google.protobuf.ByteString value)
         Optional. Scrypt hash of the username+password that the customer wants to
         verify against a known password leak.
         
        bytes hashed_user_credentials = 1 [(.google.api.field_behavior) = OPTIONAL];
        Parameters:
        value - The hashedUserCredentials to set.
        Returns:
        This builder for chaining.
      • clearHashedUserCredentials

        public PasswordLeakVerification.Builder clearHashedUserCredentials()
         Optional. Scrypt hash of the username+password that the customer wants to
         verify against a known password leak.
         
        bytes hashed_user_credentials = 1 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        This builder for chaining.
      • getCredentialsLeaked

        public boolean getCredentialsLeaked()
         Output only. Whether or not the user's credentials are present in a known
         leak.
         
        bool credentials_leaked = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getCredentialsLeaked in interface PasswordLeakVerificationOrBuilder
        Returns:
        The credentialsLeaked.
      • setCredentialsLeaked

        public PasswordLeakVerification.Builder setCredentialsLeaked​(boolean value)
         Output only. Whether or not the user's credentials are present in a known
         leak.
         
        bool credentials_leaked = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Parameters:
        value - The credentialsLeaked to set.
        Returns:
        This builder for chaining.
      • clearCredentialsLeaked

        public PasswordLeakVerification.Builder clearCredentialsLeaked()
         Output only. Whether or not the user's credentials are present in a known
         leak.
         
        bool credentials_leaked = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        This builder for chaining.
      • getCanonicalizedUsername

        public String getCanonicalizedUsername()
         Optional. The username part of the user credentials for which we want to
         trigger a leak check in canonicalized form. This is the same data used to
         create the hashed_user_credentials on the customer side.
         
        string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getCanonicalizedUsername in interface PasswordLeakVerificationOrBuilder
        Returns:
        The canonicalizedUsername.
      • getCanonicalizedUsernameBytes

        public com.google.protobuf.ByteString getCanonicalizedUsernameBytes()
         Optional. The username part of the user credentials for which we want to
         trigger a leak check in canonicalized form. This is the same data used to
         create the hashed_user_credentials on the customer side.
         
        string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getCanonicalizedUsernameBytes in interface PasswordLeakVerificationOrBuilder
        Returns:
        The bytes for canonicalizedUsername.
      • setCanonicalizedUsername

        public PasswordLeakVerification.Builder setCanonicalizedUsername​(String value)
         Optional. The username part of the user credentials for which we want to
         trigger a leak check in canonicalized form. This is the same data used to
         create the hashed_user_credentials on the customer side.
         
        string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
        Parameters:
        value - The canonicalizedUsername to set.
        Returns:
        This builder for chaining.
      • clearCanonicalizedUsername

        public PasswordLeakVerification.Builder clearCanonicalizedUsername()
         Optional. The username part of the user credentials for which we want to
         trigger a leak check in canonicalized form. This is the same data used to
         create the hashed_user_credentials on the customer side.
         
        string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        This builder for chaining.
      • setCanonicalizedUsernameBytes

        public PasswordLeakVerification.Builder setCanonicalizedUsernameBytes​(com.google.protobuf.ByteString value)
         Optional. The username part of the user credentials for which we want to
         trigger a leak check in canonicalized form. This is the same data used to
         create the hashed_user_credentials on the customer side.
         
        string canonicalized_username = 3 [(.google.api.field_behavior) = OPTIONAL];
        Parameters:
        value - The bytes for canonicalizedUsername to set.
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final PasswordLeakVerification.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>
      • mergeUnknownFields

        public final PasswordLeakVerification.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<PasswordLeakVerification.Builder>