HHH-14529 Add a few missing methods to the JAXB representation of ManagedType
This commit is contained in:
parent
efe5424d35
commit
b4dd2e272f
|
@ -10,10 +10,6 @@ package org.hibernate.boot.jaxb.mapping.spi;
|
||||||
* Common interface for JAXB bindings representing entities and mapped-superclasses.
|
* Common interface for JAXB bindings representing entities and mapped-superclasses.
|
||||||
*/
|
*/
|
||||||
public interface EntityOrMappedSuperclass extends ManagedType {
|
public interface EntityOrMappedSuperclass extends ManagedType {
|
||||||
|
|
||||||
String getDescription();
|
|
||||||
|
|
||||||
void setDescription(String value);
|
|
||||||
|
|
||||||
JaxbIdClass getIdClass();
|
JaxbIdClass getIdClass();
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,11 @@ import javax.persistence.AccessType;
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
public interface ManagedType {
|
public interface ManagedType {
|
||||||
|
|
||||||
|
String getDescription();
|
||||||
|
|
||||||
|
void setDescription(String value);
|
||||||
|
|
||||||
String getClazz();
|
String getClazz();
|
||||||
|
|
||||||
void setClazz(String className);
|
void setClazz(String className);
|
||||||
|
@ -25,4 +30,8 @@ public interface ManagedType {
|
||||||
void setMetadataComplete(Boolean isMetadataComplete);
|
void setMetadataComplete(Boolean isMetadataComplete);
|
||||||
|
|
||||||
AccessType getAccess();
|
AccessType getAccess();
|
||||||
|
|
||||||
|
void setAccess(AccessType value);
|
||||||
|
|
||||||
|
AttributesContainer getAttributes();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue