package com.godoro.scope;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
@ManagedBean
@RequestScoped
public class RequestBean {
private int integerProperty;
private String stringProperty;
public RequestBean() {
integerProperty=6;
stringProperty="Egitim";
}
public int getIntegerProperty() {
return integerProperty;
}
public void setIntegerProperty(int integerProperty) {
this.integerProperty = integerProperty;
}
public String getStringProperty() {
return stringProperty;
}
public void setStringProperty(String stringProperty) {
this.stringProperty = stringProperty;
}
public void perform(){
integerProperty++;
System.out.println("İstek Tanesi Tamsayı "+integerProperty+" Katar "+stringProperty);
}
}
Dosyayı İndir