| 453 |
jp_milcent |
1 |
package org.tela_botanica.client.modeles;
|
|
|
2 |
|
|
|
3 |
import java.util.Iterator;
|
|
|
4 |
import java.util.Set;
|
|
|
5 |
|
|
|
6 |
import com.google.gwt.json.client.JSONObject;
|
|
|
7 |
|
|
|
8 |
public class Collection extends aDonnee {
|
|
|
9 |
|
| 468 |
jp_milcent |
10 |
private static final long serialVersionUID = 3295310312337145716L;
|
|
|
11 |
|
| 453 |
jp_milcent |
12 |
public static final String PREFIXE = "cc";
|
|
|
13 |
private CollectionBotanique botanique = null;
|
|
|
14 |
|
|
|
15 |
public Collection() {
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
public Collection(JSONObject collection) {
|
|
|
19 |
// l'objet JSON est une table de hachage
|
|
|
20 |
Set<String> im = collection.keySet();
|
|
|
21 |
|
|
|
22 |
// Parcourt pour chaque clé
|
|
|
23 |
for (Iterator<String> it = im.iterator(); it.hasNext();) {
|
|
|
24 |
// Si elle est associée à une valeur, nous l'ajoutons
|
|
|
25 |
String cle = it.next();
|
|
|
26 |
if (cle.startsWith(PREFIXE+"_")) {
|
|
|
27 |
// Suppression de l'abréviation du champ. Inutile dans le contexte d'un objet
|
|
|
28 |
String cleObjet = cle.replaceFirst("^"+PREFIXE+"_", "");
|
|
|
29 |
// Sinon, nous ajoutons la clé avec une valeur vide
|
|
|
30 |
String valeur = "";
|
|
|
31 |
if (collection.get(cle).isString() != null) {
|
|
|
32 |
valeur = collection.get(cle).isString().stringValue();
|
|
|
33 |
}
|
|
|
34 |
this.set(cleObjet, valeur);
|
|
|
35 |
}
|
|
|
36 |
}
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
// BOTANIQUE
|
|
|
40 |
public CollectionBotanique getBotanique() {
|
|
|
41 |
return botanique;
|
|
|
42 |
}
|
|
|
43 |
public void setBotanique(CollectionBotanique botaniqueAStocker) {
|
|
|
44 |
botanique = botaniqueAStocker;
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
// ID
|
|
|
48 |
public String getId() {
|
|
|
49 |
return renvoyerValeurCorrecte("id_collection");
|
|
|
50 |
}
|
|
|
51 |
public void setId(String idCollection) {
|
|
|
52 |
this.set("id_collection", idCollection);
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
// CE PROJET
|
|
|
56 |
public String getIdProjet() {
|
|
|
57 |
return renvoyerValeurCorrecte("ce_projet");
|
|
|
58 |
}
|
|
|
59 |
public void setIdProjet(String idProjet) {
|
|
|
60 |
this.set("ce_projet", idProjet);
|
|
|
61 |
}
|
|
|
62 |
|
| 628 |
jp_milcent |
63 |
// COLLECTION MERE NOM
|
|
|
64 |
public String getCollectionMereNom() {
|
|
|
65 |
return renvoyerValeurCorrecte("collection_mere_nom");
|
|
|
66 |
}
|
|
|
67 |
public void setCollectionMereNom(String collectionMereNom) {
|
|
|
68 |
this.set("collection_mere_nom", collectionMereNom);
|
|
|
69 |
}
|
|
|
70 |
|
| 453 |
jp_milcent |
71 |
// CE STRUCTURE
|
|
|
72 |
public String getIdStructure() {
|
|
|
73 |
return renvoyerValeurCorrecte("ce_structure");
|
|
|
74 |
}
|
|
|
75 |
public void setIdStructure(String idStructure) {
|
|
|
76 |
this.set("ce_structure", idStructure);
|
|
|
77 |
}
|
|
|
78 |
|
|
|
79 |
// GUID
|
|
|
80 |
public String getGuid() {
|
|
|
81 |
return renvoyerValeurCorrecte("guid");
|
|
|
82 |
}
|
|
|
83 |
public void setGuid(String guid) {
|
|
|
84 |
this.set("guid", guid);
|
|
|
85 |
}
|
| 628 |
jp_milcent |
86 |
|
|
|
87 |
// IDENTIFIANT ALTERNATIF
|
|
|
88 |
public String getIdAlternatif() {
|
|
|
89 |
return renvoyerValeurCorrecte("truk_identifiant_alternatif");
|
|
|
90 |
}
|
|
|
91 |
public void setIdAlternatif(String idAlter) {
|
|
|
92 |
this.set("truk_identifiant_alternatif", idAlter);
|
|
|
93 |
}
|
| 453 |
jp_milcent |
94 |
|
| 477 |
jp_milcent |
95 |
// CODE
|
|
|
96 |
public String getCode() {
|
| 628 |
jp_milcent |
97 |
return renvoyerValeurCorrecte("truk_code");
|
| 477 |
jp_milcent |
98 |
}
|
|
|
99 |
public void setCode(String code) {
|
| 628 |
jp_milcent |
100 |
this.set("truk_code", code);
|
| 477 |
jp_milcent |
101 |
}
|
|
|
102 |
|
| 628 |
jp_milcent |
103 |
// COTE
|
|
|
104 |
public String getCote() {
|
|
|
105 |
return renvoyerValeurCorrecte("cote");
|
|
|
106 |
}
|
|
|
107 |
public void setCote(String cote) {
|
|
|
108 |
this.set("cote", cote);
|
|
|
109 |
}
|
|
|
110 |
|
| 453 |
jp_milcent |
111 |
// NOM
|
|
|
112 |
public String getNom() {
|
|
|
113 |
return renvoyerValeurCorrecte("nom");
|
|
|
114 |
}
|
|
|
115 |
public void setNom(String nom) {
|
|
|
116 |
this.set("nom", nom);
|
|
|
117 |
}
|
| 628 |
jp_milcent |
118 |
|
|
|
119 |
// NOM ALTERNATIF
|
|
|
120 |
public String getNomAlternatif() {
|
|
|
121 |
return renvoyerValeurCorrecte("truk_nom_alternatif");
|
| 453 |
jp_milcent |
122 |
}
|
| 628 |
jp_milcent |
123 |
public void setNomAlternatif(String nomAlter) {
|
|
|
124 |
this.set("truk_nom_alternatif", nomAlter);
|
| 453 |
jp_milcent |
125 |
}
|
| 477 |
jp_milcent |
126 |
|
|
|
127 |
// DESCRIPTION
|
|
|
128 |
public String getDescription() {
|
|
|
129 |
return renvoyerValeurCorrecte("description");
|
|
|
130 |
}
|
|
|
131 |
public void setDescription(String description) {
|
|
|
132 |
this.set("description", description);
|
|
|
133 |
}
|
|
|
134 |
|
|
|
135 |
// DESCRIPTION SPECIALISTE
|
|
|
136 |
public String getDescriptionSpecialiste() {
|
|
|
137 |
return renvoyerValeurCorrecte("description_specialiste");
|
|
|
138 |
}
|
|
|
139 |
public void setDescriptionSpecialiste(String descriptionSepcialiste) {
|
|
|
140 |
this.set("description_specialiste", descriptionSepcialiste);
|
|
|
141 |
}
|
| 628 |
jp_milcent |
142 |
|
|
|
143 |
// HISTORIQUE
|
|
|
144 |
public String getHistorique() {
|
|
|
145 |
return renvoyerValeurCorrecte("historique");
|
|
|
146 |
}
|
|
|
147 |
public void setHistorique(String historique) {
|
|
|
148 |
this.set("historique", historique);
|
|
|
149 |
}
|
| 468 |
jp_milcent |
150 |
|
| 628 |
jp_milcent |
151 |
// URL
|
|
|
152 |
public String getUrls() {
|
|
|
153 |
return renvoyerValeurCorrecte("truk_url");
|
|
|
154 |
}
|
|
|
155 |
public void setUrls(String urls) {
|
|
|
156 |
this.set("truk_url", urls);
|
|
|
157 |
}
|
|
|
158 |
|
|
|
159 |
// GROUPEMENT PRINCIPE
|
|
|
160 |
public String getGroupementPrincipe() {
|
|
|
161 |
return renvoyerValeurCorrecte("truk_groupement_principe");
|
|
|
162 |
}
|
|
|
163 |
public void setGroupementPrincipe(String groupementPrincipe) {
|
|
|
164 |
this.set("truk_groupement_principe", groupementPrincipe);
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
// GROUPEMENT BUT
|
|
|
168 |
public String getGroupementBut() {
|
|
|
169 |
return renvoyerValeurCorrecte("truk_groupement_but");
|
|
|
170 |
}
|
|
|
171 |
public void setGroupementBut(String groupementBut) {
|
|
|
172 |
this.set("truk_groupement_but", groupementBut);
|
|
|
173 |
}
|
|
|
174 |
|
|
|
175 |
// TYPE NCD
|
|
|
176 |
public String getTypeNcd() {
|
|
|
177 |
return renvoyerValeurCorrecte("ce_type");
|
|
|
178 |
}
|
|
|
179 |
public void setTypeNcd(String typeNcd) {
|
|
|
180 |
this.set("ce_type", typeNcd);
|
|
|
181 |
}
|
|
|
182 |
|
|
|
183 |
// TYPE DEPOT
|
|
|
184 |
public String getTypeDepot() {
|
|
|
185 |
return renvoyerValeurCorrecte("ce_type_depot");
|
|
|
186 |
}
|
|
|
187 |
public void setTypeDepot(String typeDepot) {
|
|
|
188 |
this.set("ce_type_depot", typeDepot);
|
|
|
189 |
}
|
|
|
190 |
|
| 468 |
jp_milcent |
191 |
// +--------------------------------------------------------------------------------------------------------------+
|
|
|
192 |
// STRUCTURE NOM
|
|
|
193 |
public String getStructureNom() {
|
|
|
194 |
return renvoyerValeurCorrecte("structure_nom");
|
|
|
195 |
}
|
| 453 |
jp_milcent |
196 |
|
| 468 |
jp_milcent |
197 |
// STRUCTURE VILLE
|
|
|
198 |
public String getStructureVille() {
|
|
|
199 |
return renvoyerValeurCorrecte("structure_ville");
|
|
|
200 |
}
|
|
|
201 |
|
| 453 |
jp_milcent |
202 |
}
|