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

es.prodevelop.pui9.annotations.PuiNoSessionRequired Maven / Gradle / Ivy

The newest version!
package es.prodevelop.pui9.annotations;

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

import org.springframework.stereotype.Controller;

/**
 * This annotation set in a WebService method or in a class marked with the
 * {@link Controller} annotation, make this WebService or the whole controller
 * to be able to be called without starting a session previously in the system
 * 
 * @author Marc Gil - [email protected]
 */
@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface PuiNoSessionRequired {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy