- java.lang.Object
-
- io.ebeaninternal.xmapping.api.XmapEntity
-
public class XmapEntity extends Object
External mapping for an Entity.
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringclazzprotected List<XmapNamedQuery>namedQueryprotected List<XmapRawSql>rawSql
-
Constructor Summary
Constructors Constructor Description XmapEntity(String clazz)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClazz()Return the entity class.List<XmapNamedQuery>getNamedQuery()Return the named queries for this entity.List<XmapRawSql>getRawSql()Return the named raw sql queries for this entity.
-
-
-
Field Detail
-
clazz
protected final String clazz
-
namedQuery
protected final List<XmapNamedQuery> namedQuery
-
rawSql
protected final List<XmapRawSql> rawSql
-
-
Constructor Detail
-
XmapEntity
public XmapEntity(String clazz)
-
-
Method Detail
-
getClazz
public String getClazz()
Return the entity class.
-
getNamedQuery
public List<XmapNamedQuery> getNamedQuery()
Return the named queries for this entity.
-
getRawSql
public List<XmapRawSql> getRawSql()
Return the named raw sql queries for this entity.
-
-