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

org.jbpm.ejb.LocalTimerEntityHome Maven / Gradle / Ivy

There is a newer version: 3.2.19.ayg
Show newest version
package org.jbpm.ejb;

import java.util.Collection;

import javax.ejb.CreateException;
import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;

public interface LocalTimerEntityHome extends EJBLocalHome {

	public LocalTimerEntity create() throws CreateException;

	public LocalTimerEntity findByPrimaryKey(Long timerId) throws FinderException;

	public Collection findByNameAndTokenId(String name, Long tokenId)
			throws FinderException;

	public Collection findByProcessInstanceId(Long processInstanceId) throws FinderException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy