FacesContext faces = FacesContext.getCurrentInstance();
Map session = faces.getExternalContext().getSessionMap();
Employee e = new Employee();
session.put("employee", e);
FaceletFactory f = FaceletFactory.getInstance();
Facelet at = f.getFacelet("if.xml");
UIViewRoot root = faces.getViewRoot();
// make sure the form is there
e.setManagement(true);