![JAR search and dependency download from the Maven repository](/logo.png)
com.yahoo.elide.annotation.ToMany Maven / Gradle / Ivy
/*
* Copyright 2017, 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.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Marks a method or field as a relationship that should be exposed via Elide Despite JPA bindings.
*/
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface ToMany {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy