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

com.wavefront.agent.auth.DummyAuthenticator Maven / Gradle / Ivy

There is a newer version: 9999.0
Show newest version
package com.wavefront.agent.auth;

/**
 * A dummy authenticator for the "No authorization required" flow.
 *
 * @author [email protected]
 */
class DummyAuthenticator implements TokenAuthenticator {

  DummyAuthenticator() {
  }

  @Override
  public boolean authorize(String token) {
    return true;
  }

  @Override
  public boolean authRequired() {
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy