Here is an example of the use of RequestParameter
import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.annotations.RequestParameter;
  | 
  | @Name("detail")
  | public class Detail
  | {
  | 
  |     @RequestParameter                             
  |     Long entryId;
  | 
  |     public Long getEntryId()
  |     {
  |             return entryId;
  |     }
  | 
  |     public void setEntryId(Long entryId)
  |     {
  |             this.entryId = entryId;
  |     }
  |     
  |     public Entry getEntry()
  |     {
  |             return new Entry(entryId);
  |     }
  |     
  | }

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4077306#4077306

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4077306
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to