All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.boot.jaxb.mapping.spi.ManagedType Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.boot.jaxb.mapping.spi;

import javax.persistence.AccessType;

/**
 * Common interface for JAXB bindings representing entities, mapped-superclasses and embeddables (JPA collective
 * calls these "managed types" in terms of its Metamodel api).
 *
 * @author Strong Liu
 * @author Steve Ebersole
 */
public interface ManagedType {

	String getDescription();

	void setDescription(String value);

	String getClazz();

	void setClazz(String className);

	Boolean isMetadataComplete();

	void setMetadataComplete(Boolean isMetadataComplete);

	AccessType getAccess();

	void setAccess(AccessType value);

	AttributesContainer getAttributes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy