This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| //$Id: RegisterAction.java 5579 2007-06-27 00:06:49Z gavin $ | |
| package org.jboss.seam.example.booking; | |
| import static org.jboss.seam.ScopeType.EVENT; | |
| import java.util.List; | |
| import javax.ejb.Remove; | |
| import javax.ejb.Stateful; | |
| import javax.persistence.EntityManager; | |
| import javax.persistence.PersistenceContext; | |
| import org.jboss.seam.annotations.In; | |
| import org.jboss.seam.annotations.Name; | |
| import org.jboss.seam.annotations.Scope; | |
| import org.jboss.seam.faces.FacesMessages; | |
| @Stateful | |
| @Scope(EVENT) | |
| @Name("register") | |
| public class RegisterAction implements Register | |
| { | |
| @In | |
| private User user; | |
| @PersistenceContext | |
| private EntityManager em; | |
| @In | |
| private FacesMessages facesMessages; | |
| private String verify; | |
| private boolean registered; | |
| public void register() | |
| { | |
| if ( user.getPassword().equals(verify) ) | |
| { | |
| List existing = em.createQuery("select u.username from User u where u.username=#{user.username}") | |
| .getResultList(); | |
| if (existing.size()==0) | |
| { | |
| em.persist(user); | |
| facesMessages.add("Successfully registered as #{user.username}"); | |
| registered = true; | |
| } | |
| else | |
| { | |
| facesMessages.addToControl("username", "Username #{user.username} already exists"); | |
| } | |
| } | |
| else | |
| { | |
| facesMessages.addToControl("verify", "Re-enter your password"); | |
| verify=null; | |
| } | |
| } | |
| public void invalid() | |
| { | |
| facesMessages.add("Please try again"); | |
| } | |
| public boolean isRegistered() | |
| { | |
| return registered; | |
| } | |
| public String getVerify() | |
| { | |
| return verify; | |
| } | |
| public void setVerify(String verify) | |
| { | |
| this.verify = verify; | |
| } | |
| @Remove | |
| public void destroy() {} | |
| } |