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

com.netflix.msl.entityauth.ProxyEntityAuthenticationScheme 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.entityauth;

import com.netflix.msl.entityauth.EntityAuthenticationScheme;

/**
 * 

Proxy entity authentication schemes.

* *

All entity authentication schemes are automatically re-mapped onto the * proxy entity authentication scheme.

* * @author Wesley Miaw */ public class ProxyEntityAuthenticationScheme extends EntityAuthenticationScheme { /** Proxy entity authentication scheme. */ public static final EntityAuthenticationScheme PROXY = new ProxyEntityAuthenticationScheme("PROXY", false, false); /** * Define an entity authentication scheme with the specified name and * cryptographic properties. * * @param name the entity authentication scheme name. * @param encrypts true if the scheme encrypts message data. * @param protects true if the scheme protects message integrity. */ protected ProxyEntityAuthenticationScheme(String name, boolean encrypts, boolean protects) { super(name, encrypts, protects); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy