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

com.netflix.msl.userauth.ProxyUserAuthenticationScheme Maven / Gradle / Ivy

There is a newer version: 1.2226.0
Show newest version
/**
 * 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