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

com.avaje.ebean.annotation.NamedUpdates Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.annotation;

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

/**
 * Holds an array of named Update statements for a particular entity bean type.
 */
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface NamedUpdates {

  /**
   * An array of named updates.
   */
  NamedUpdate[] value();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy