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

com.outbrain.ob1k.security.server.HttpBasicCredentials Maven / Gradle / Ivy

The newest version!
package com.outbrain.ob1k.security.server;

class HttpBasicCredentials implements Credentials {

  private final UserPasswordToken credentials;

  public HttpBasicCredentials(final UserPasswordToken credentials) {
    this.credentials = credentials;
  }

  @Override
  public UserPasswordToken get() {
    return credentials;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy