com.github.tomakehurst.wiremock.security.NoAuthenticator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock-standalone Show documentation
Show all versions of wiremock-standalone Show documentation
A web service test double for all occasions
package com.github.tomakehurst.wiremock.security;
import com.github.tomakehurst.wiremock.http.Request;
public class NoAuthenticator implements Authenticator {
@Override
public boolean authenticate(Request request) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy