org.hibernate.search.backend.DeleteWork Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$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 );
}
}