package com.timesten.tptbmas; import java.util.Collection; import javax.ejb.Remote; /* TptbmSession is the remote interface used by application server clients to * manage instances of the Tptbm class. The TptbmSessionBean class implements * this interface. */ @Remote public interface TptbmSession { public void persist (Tptbm tptbm) throws Exception; public void merge (Tptbm tptbm) throws Exception; public void remove (Tptbm tptbm) throws Exception; public Tptbm findByPrimaryKey (TptbmPKey primaryKey) throws Exception; public void populate (Collection tptbms, int flushCount) throws Exception; public int deleteAll (int flushCount) throws Exception; }