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

org.hibernate.boot.jaxb.mapping.spi.EntityOrMappedSuperclass 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;

/**
 * Common interface for JAXB bindings representing entities and mapped-superclasses.
 */
public interface EntityOrMappedSuperclass extends ManagedType, LifecycleCallbackContainer {

	JaxbIdClass getIdClass();

	void setIdClass(JaxbIdClass value);

	JaxbEmptyType getExcludeDefaultListeners();

	void setExcludeDefaultListeners(JaxbEmptyType value);

	JaxbEmptyType getExcludeSuperclassListeners();

	void setExcludeSuperclassListeners(JaxbEmptyType value);

	JaxbEntityListeners getEntityListeners();

	void setEntityListeners(JaxbEntityListeners value);

	JaxbPrePersist getPrePersist();

	void setPrePersist(JaxbPrePersist value);

	JaxbPostPersist getPostPersist();

	void setPostPersist(JaxbPostPersist value);

	JaxbPreRemove getPreRemove();

	void setPreRemove(JaxbPreRemove value);

	JaxbPostRemove getPostRemove();

	void setPostRemove(JaxbPostRemove value);

	JaxbPreUpdate getPreUpdate();

	void setPreUpdate(JaxbPreUpdate value);

	JaxbPostUpdate getPostUpdate();

	void setPostUpdate(JaxbPostUpdate value);

	JaxbPostLoad getPostLoad();

	void setPostLoad(JaxbPostLoad value);

	JaxbAttributes getAttributes();

	void setAttributes(JaxbAttributes value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy