Wednesday, 22 February 2012

Getting values From the url in jsf

1. activation.xhtml











Your account is successfully activated!
You will in 3 seconds be redirected to home 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.
}
// ...
}