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

play.filters.csp.CSP Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) from 2022 The Play Framework Contributors , 2011-2021 Lightbend Inc. 
 */

package play.filters.csp;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import play.mvc.With;

/** This annotation runs the play.filters.csp.CSPAction on a controller method. */
@With(CSPAction.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface CSP {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy