
it.cnr.contab.util.servlet.JSONRESTRequest Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Consiglio Nazionale delle Ricerche
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package it.cnr.contab.util.servlet;
public class JSONRESTRequest {
private Context context;
public JSONRESTRequest() {
super();
}
public Context getContext() {
return context;
}
public void setContext(Context context) {
this.context = context;
}
public static class Context {
private Integer esercizio;
private String cd_cds, cd_unita_organizzativa, cd_cdr;
public Context() {
super();
}
public Integer getEsercizio() {
return esercizio;
}
public void setEsercizio(Integer esercizio) {
this.esercizio = esercizio;
}
public String getCd_cds() {
return cd_cds;
}
public void setCd_cds(String cd_cds) {
this.cd_cds = cd_cds;
}
public String getCd_unita_organizzativa() {
return cd_unita_organizzativa;
}
public void setCd_unita_organizzativa(String cd_unita_organizzativa) {
this.cd_unita_organizzativa = cd_unita_organizzativa;
}
public String getCd_cdr() {
return cd_cdr;
}
public void setCd_cdr(String cd_cdr) {
this.cd_cdr = cd_cdr;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy