![JAR search and dependency download from the Maven repository](/logo.png)
com.netflix.msl.userauth.ProxyUserAuthenticationScheme Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Netflix, Inc. All rights reserved.
*/
package com.netflix.msl.userauth;
import com.netflix.msl.userauth.UserAuthenticationScheme;
/**
* Proxy user authentication schemes.
*
* All user authentication schemes are automatically re-mapped onto the
* proxy key exchange scheme.
*
* @author Wesley Miaw
*/
public class ProxyUserAuthenticationScheme extends UserAuthenticationScheme {
/** Proxy key exchange scheme. */
public static final UserAuthenticationScheme PROXY = new ProxyUserAuthenticationScheme("PROXY");
/**
* Define a user authentication scheme with the specified name.
*
* @param name the user authentication scheme name.
*/
public ProxyUserAuthenticationScheme(final String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy