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

com.identityblitz.scs.glue.play.SCSEnabled Maven / Gradle / Ivy

Go to download

The Java implementation of Secure Cookie Session (SCS). The implementation conforms RFC 6896 (https://tools.ietf.org/html/rfc6896).

The newest version!
package com.identityblitz.scs.glue.play;

import play.mvc.With;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * The annotation to add SCS functionality to an action or a whole controller of the Play framework application.
 */
@With(SCSAction.class)
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface SCSEnabled {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy