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

org.hibernate.search.backend.DeleteWork 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;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy