ReaderNameContainer.java
629 Bytes
package fi.codecrew.moya.web.cdiview.reader;
import java.io.Serializable;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
@Named
@SessionScoped
public class ReaderNameContainer implements Serializable {
private static final long serialVersionUID = 571747919767505523L;
private Integer readerId;
private boolean autopoll = false;
public Integer getReaderId() {
return readerId;
}
public void setReaderId(Integer readerId) {
this.readerId = readerId;
}
public boolean isAutopoll() {
return autopoll;
}
public void setAutopoll(boolean autopoll) {
this.autopoll = autopoll;
}
}