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

org.hibernate.envers.configuration.metadata.reader.PersistentPropertiesSource Maven / Gradle / Ivy

package org.hibernate.envers.configuration.metadata.reader;

import org.hibernate.mapping.Property;
import org.hibernate.annotations.common.reflection.XClass;

import java.util.Iterator;

/**
 * A source of data on persistent properties of a class or component.
 * @author Adam Warski (adam at warski dot org)
 */
public interface PersistentPropertiesSource {
	Iterator getPropertyIterator();
	Property getProperty(String propertyName);
	XClass getXClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy