1 package cz.frantovo.nekurak.xml;
3 import javax.xml.bind.annotation.XmlElement;
4 import javax.xml.bind.annotation.XmlRootElement;
7 * Jeden hlas od uživatele.
10 @XmlRootElement(name = "hlas")
11 public class HlasXML {
14 private boolean kourit;
15 private String csrfToken;
18 public int getPodnik() {
22 public void setPodnik(int podnik) {
27 public boolean isKourit() {
31 public void setKourit(boolean hlas) {
36 public String getCsrfToken() {
40 public void setCsrfToken(String csrfToken) {
41 this.csrfToken = csrfToken;