Interface ManagedType
-
- All Known Subinterfaces:
EntityOrMappedSuperclass
- All Known Implementing Classes:
JaxbEmbeddable,JaxbEntity,JaxbMappedSuperclass
public interface ManagedTypeCommon 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 AccessTypegetAccess()AttributesContainergetAttributes()java.lang.StringgetClazz()java.lang.StringgetDescription()java.lang.BooleanisMetadataComplete()voidsetAccess(AccessType value)voidsetClazz(java.lang.String className)voidsetDescription(java.lang.String value)voidsetMetadataComplete(java.lang.Boolean isMetadataComplete)
-
-
-
Method Detail
-
getDescription
java.lang.String getDescription()
-
setDescription
void setDescription(java.lang.String value)
-
getClazz
java.lang.String getClazz()
-
setClazz
void setClazz(java.lang.String className)
-
isMetadataComplete
java.lang.Boolean isMetadataComplete()
-
setMetadataComplete
void setMetadataComplete(java.lang.Boolean isMetadataComplete)
-
getAccess
AccessType getAccess()
-
setAccess
void setAccess(AccessType value)
-
getAttributes
AttributesContainer getAttributes()
-
-