All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bandwidth.VoiceBasicAuthCredentials Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.0
Show newest version
/*
 * BandwidthLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */

package com.bandwidth;

/**
 * Interface for defining the behavior of Basic Authentication.
 */
public interface VoiceBasicAuthCredentials {

    /**
     * String value for basicAuthUserName.
     * @return basicAuthUserName
     */
    String getBasicAuthUserName();

    /**
     * String value for basicAuthPassword.
     * @return basicAuthPassword
     */
    String getBasicAuthPassword();

    /**
     * Checks if provided credentials matched with existing ones.
     * @param basicAuthUserName String value for credentials.
     * @param basicAuthPassword String value for credentials.
     * @return true if credentials matched.
     */
    boolean equals(String basicAuthUserName, String basicAuthPassword);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy