com.twilio.credential.CredentialProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.credential;
import com.twilio.auth_strategy.AuthStrategy;
import com.twilio.auth_strategy.TokenAuthStrategy;
import com.twilio.constant.EnumConstants;
import com.twilio.http.Request;
import lombok.Getter;
public abstract class CredentialProvider {
@Getter
private EnumConstants.AuthType authType;
public CredentialProvider(EnumConstants.AuthType authType) {
this.authType = authType;
}
public abstract AuthStrategy toAuthStrategy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy