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

org.seedstack.seed.security.data.Secured Maven / Gradle / Ivy

/**
 * Copyright (c) 2013-2016, The SeedStack authors 
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.seedstack.seed.security.data;

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

/**
 * This annotation marks the annotated element as secured.
 * 
 * @author [email protected]
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE,ElementType.ANNOTATION_TYPE, ElementType.PARAMETER, ElementType.METHOD})
public @interface Secured {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy