Package org.hibernate.boot.jaxb.mapping
Interface ManagedType
-
- All Known Subinterfaces:
EntityOrMappedSuperclass
- All Known Implementing Classes:
JaxbEmbeddable
,JaxbEntity
,JaxbMappedSuperclass
public interface ManagedType
Common interface for JAXB bindings representing entities, mapped-superclasses and embeddables (JPA collective calls these "managed types" in terms of its Metamodel api).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessType
getAccess()
AttributesContainer
getAttributes()
String
getClazz()
String
getDescription()
Boolean
isMetadataComplete()
void
setAccess(AccessType value)
void
setClazz(String className)
void
setDescription(String value)
void
setMetadataComplete(Boolean isMetadataComplete)
-
-
-
Method Detail
-
getDescription
String getDescription()
-
setDescription
void setDescription(String value)
-
getClazz
String getClazz()
-
setClazz
void setClazz(String className)
-
isMetadataComplete
Boolean isMetadataComplete()
-
setMetadataComplete
void setMetadataComplete(Boolean isMetadataComplete)
-
getAccess
AccessType getAccess()
-
setAccess
void setAccess(AccessType value)
-
getAttributes
AttributesContainer getAttributes()
-
-