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

com.samskivert.depot.annotation.Transient Maven / Gradle / Ivy

The newest version!
//
// Depot library - a Java relational persistence library
// https://github.com/threerings/depot/blob/master/LICENSE

package com.samskivert.depot.annotation;

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

/**
 * This annotation specifies that the property or field is not persistent. It is used to annotate
 * a property or field of an entity class, mapped superclass, or embeddable class.
 */
@Target(value=ElementType.FIELD)
@Retention(value=RetentionPolicy.RUNTIME)
public @interface Transient
{
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy