ph.com.nightowlstudios.entity.Table Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edge Show documentation
Show all versions of edge Show documentation
A simple library for building REST API using Vertx.
package ph.com.nightowlstudios.entity;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Table name of an {@link ph.com.nightowlstudios.entity.Entity}. Used by {@code PersistenceClient}
*
* @author Joseph Harvey Angeles - @yev
* @see ph.com.nightowlstudios.entity.Entity
* @see ph.com.nightowlstudios.persistence.PersistenceClient
* @since 7/3/20
**/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
String value();
}