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

org.hibernate.search.backend.AddWork Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: $
package org.hibernate.search.backend;

import java.io.Serializable;

import org.apache.lucene.document.Document;

/**
 * @author Emmanuel Bernard
 */
public class AddWork extends Work {
	public AddWork(Serializable id, Class entity, Document document) {
		super( id, entity, document );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy