play.db.Model Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
RePlay is a fork of the Play1 framework, created by Codeborne.
package play.db;
import play.db.jpa.JPAModelLoader;
import play.exceptions.UnexpectedException;
import jakarta.persistence.Entity;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.util.List;
public interface Model {
void _save();
void _delete();
Object _key();
class Property {
public String name;
public Class> type;
public Field field;
public boolean isSearchable;
public boolean isMultiple;
public boolean isRelation;
public boolean isGenerated;
public Class> relationType;
public Choices choices;
}
interface Choices {
List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy