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

org.codehaus.httpcache4j.auth.SchemeRegistry Maven / Gradle / Ivy

The newest version!
package org.codehaus.httpcache4j.auth;

import org.codehaus.httpcache4j.HTTPHost;

public interface SchemeRegistry {
    void register(HTTPHost host, AuthScheme scheme);

    boolean matches(HTTPHost host);

    void clear();

    AuthScheme get(HTTPHost host);

    void remove(HTTPHost host);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy