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

org.ibatis.persist.Table Maven / Gradle / Ivy

package org.ibatis.persist;

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

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Specifies the table for the annotated entity.
 * 

* If no Table annotation is specified for an entity class, the default values apply. * @since iBatis Persistence 1.0 */ @Target(TYPE) @Retention(RUNTIME) public @interface Table { /** * (Optional) The name of the table. *

* Defaults to the entity name. */ String name() default ""; /** * (Optional) The schema of the table. *

* Defaults to the default schema for user. */ String schema() default ""; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy