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

net.contextfw.web.commons.cloud.session.CloudSessionOpenMode Maven / Gradle / Ivy

The newest version!
package net.contextfw.web.commons.cloud.session;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import com.google.inject.BindingAnnotation;

/**
 * A convinience annotation for controlling open mode for sessions
 * 
 * 

* This annotation is supported by CloudSessionLifecycleListener. *

* * @author [email protected] * @see CloudSessionLifecycleListener */ @Target( { METHOD }) @Retention(RUNTIME) @BindingAnnotation public @interface CloudSessionOpenMode { OpenMode value(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy