/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package entities;

import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;

@ManagedBean(name="mo")
@SessionScoped
public class Mojo {
  private boolean jo=true;
  public Mojo(){}

  public boolean getJo() {
    return jo;
  }

  public void setJo(boolean jo) {
    this.jo = jo;
  }

  public String change(){
    jo=!jo;
    return "./index.xhtml";
  }

}
