1 Reply Latest reply on Mar 23, 2007 4:42 PM by norman.richards

    Seampay, few questions....

    statelessbean

      Hi,
      I just look on seampay example and found somethink like this:

      @Name("paymentHome")
      public class PaymentController extends EntityHome<Payment> {
      
       @RequestParameter Long paymentId;
       @In PaymentProcessor processor;
      
       @Logger Log log;
      
       public String saveAndSchedule()
       {
       String result = persist();
      

      what is: EntityHome and where can I find some doc about this EntityHome,
      its in jar lib: import org.jboss.seam.framework.EntityHome;

      second: String result = persist();
      what is persist() and again, what that do and where can i find some info about that? It's similar to em.persist();?