
com.yahoo.elide.annotation.Exclude Maven / Gradle / Ivy
/*
* Copyright 2016, Yahoo Inc.
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root for terms.
*/
package com.yahoo.elide.annotation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Restricts access to given entity or entity attribute/relationship.
*/
@Target({METHOD, FIELD, TYPE, PACKAGE})
@Retention(RUNTIME)
public @interface Exclude {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy