com.bandwidth.PhoneNumberLookupBasicAuthCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
/*
* 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 PhoneNumberLookupBasicAuthCredentials {
/**
* 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);
}