com.bazaarvoice.emodb.auth.proxy.AuthenticatingProxy Maven / Gradle / Ivy
package com.bazaarvoice.emodb.auth.proxy;
/**
* Interface for creating a view of an interface that uses credentials with the credentials removed. Credentials
* are set once and then proxied to the original instance.
* @param Interface which does not expose credentials in individual method calls
* @param Type for credentials
*/
public interface AuthenticatingProxy {
U usingCredentials(C credentials);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy