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

org.hibernate.tuple.IdentifierAttribute Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
package org.hibernate.tuple;

import org.hibernate.engine.spi.IdentifierValue;
import org.hibernate.id.IdentifierGenerator;

/**
 * @author Steve Ebersole
 */
public interface IdentifierAttribute extends Attribute, Property {
	boolean isVirtual();

	boolean isEmbedded();

	IdentifierValue getUnsavedValue();

	IdentifierGenerator getIdentifierGenerator();

	boolean isIdentifierAssignedByInsert();

	boolean hasIdentifierMapper();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy