/*
 * 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.RequestScoped;

/**
 *
 * @author x
 */
@ManagedBean(name = "HalloBean")
@RequestScoped
public class HalloBean {
    private String name;

    public HalloBean() {
    }

    public String getHai() {
        return "Hai";
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}
