
com.twilio.auth_strategy.NoAuthStrategy 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.auth_strategy;
import com.twilio.constant.EnumConstants;
public class NoAuthStrategy extends AuthStrategy {
public NoAuthStrategy(String token) {
super(EnumConstants.AuthType.NO_AUTH);
}
@Override
public String getAuthString() {
return "";
}
@Override
public boolean requiresAuthentication() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy