1. activation.xhtml
Your account is successfully activated!
You will in 3 seconds be redirected tohome page
Activation failed! Please enter your email address to try once again.
...
Backing Bean:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.example;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.RequestScoped;
import javax.faces.context.FacesContext;
/**
*
* @author Pujya Sri
*/
@ManagedBean
@RequestScoped
public class Activation {
private boolean valid;
public boolean isValid() {
return valid;
}
public void setValid(boolean valid) {
this.valid = valid;
}
@PostConstruct
public void init() {
Map requestMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
String key = (String) requestMap.get("key");
System.out.println("hello from url" + key);
// Get User based on activation key.
// Delete activation key from database.
// Login user.
}
// ...
}
Your account is successfully activated!
You will in 3 seconds be redirected to
Activation failed! Please enter your email address to try once again.
...
Backing Bean:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.example;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.RequestScoped;
import javax.faces.context.FacesContext;
/**
*
* @author Pujya Sri
*/
@ManagedBean
@RequestScoped
public class Activation {
private boolean valid;
public boolean isValid() {
return valid;
}
public void setValid(boolean valid) {
this.valid = valid;
}
@PostConstruct
public void init() {
Map requestMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
String key = (String) requestMap.get("key");
System.out.println("hello from url" + key);
// Get User based on activation key.
// Delete activation key from database.
// Login user.
}
// ...
}