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

org.jboss.resteasy.client.jaxrs.spi.ClientConfigProvider Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.client.jaxrs.spi;

import java.net.URI;

import javax.net.ssl.SSLContext;

/**
 * Interface to enable loading of authentication configuration from outside.
 *
 * @author [email protected]
 */
public interface ClientConfigProvider {

    String getUsername(URI uri) throws ClientConfigException;

    String getPassword(URI uri) throws ClientConfigException;

    String getBearerToken(URI uri) throws ClientConfigException;

    SSLContext getSSLContext(URI uri) throws ClientConfigException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy