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

com.twilio.auth_strategy.NoAuthStrategy Maven / Gradle / Ivy

There is a newer version: 7.9.1
Show newest version
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