@@ -234,9 +234,64 @@ public class Database extends Resource implements Comparable<Database> {
234234 @ XmlElement (name = "range-element-index" )
235235 private List <ElementIndex > rangeElementIndex ;
236236
237+ @ XmlElementWrapper (name = "range-element-attribute-indexes" )
238+ @ XmlElement (name = "range-element-attribute-index" )
239+ private List <ElementAttributeIndex > rangeElementAttributeIndex ;
240+
241+ @ XmlElementWrapper (name = "element-word-lexicons" )
242+ @ XmlElement (name = "element-word-lexicon" )
243+ private List <ElementWordLexicon > elementWordLexicon ;
244+
245+ @ XmlElementWrapper (name = "element-attribute-word-lexicons" )
246+ @ XmlElement (name = "element-attribute-word-lexicon" )
247+ private List <ElementAttributeWordLexicon > elementAttributeWordLexicon ;
248+
249+ @ XmlElementWrapper (name = "path-namespaces" )
250+ @ XmlElement (name = "path-namespace" )
251+ private List <PathNamespace > pathNamespace ;
252+
237253 @ XmlElementWrapper (name = "fields" )
238254 private List <Field > field ;
239255
256+ @ XmlElementWrapper (name = "range-field-indexes" )
257+ @ XmlElement (name = "range-field-index" )
258+ private List <FieldIndex > rangeFieldIndex ;
259+
260+ @ XmlElementWrapper (name = "geospatial-element-indexes" )
261+ @ XmlElement (name = "geospatial-element-index" )
262+ private List <GeospatialElementIndex > geospatialElementIndex ;
263+
264+ @ XmlElementWrapper (name = "geospatial-element-child-indexes" )
265+ @ XmlElement (name = "geospatial-element-child-index" )
266+ private List <GeospatialElementChildIndex > geospatialElementChildIndex ;
267+
268+ @ XmlElementWrapper (name = "geospatial-element-pair-indexes" )
269+ @ XmlElement (name = "geospatial-element-pair-index" )
270+ private List <GeospatialElementPairIndex > geospatialElementPairIndex ;
271+
272+ @ XmlElementWrapper (name = "geospatial-element-attribute-pair-indexes" )
273+ @ XmlElement (name = "geospatial-element-attribute-pair-index" )
274+ private List <GeospatialElementPairIndex > geospatialElementAttributePairIndex ;
275+
276+ @ XmlElementWrapper (name = "geospatial-path-indexes" )
277+ @ XmlElement (name = "geospatial-path-index" )
278+ private List <GeospatialPathIndex > geospatialPathIndex ;
279+
280+ @ XmlElementWrapper (name = "geospatial-region-path-indexes" )
281+ @ XmlElement (name = "geospatial-region-path-index" )
282+ private List <GeospatialRegionPathIndex > geospatialRegionPathIndex ;
283+
284+ @ XmlElementWrapper (name = "default-rulesets" )
285+ @ XmlElement (name = "default-ruleset" )
286+ private List <DefaultRuleset > defaultRuleset ;
287+
288+ @ XmlElement (name = "database-replication" )
289+ private DatabaseReplication databaseReplication ;
290+
291+ @ XmlElementWrapper (name = "database-references" )
292+ @ XmlElement (name = "database-reference" )
293+ private List <DatabaseReference > databaseReference ;
294+
240295 @ XmlElement (name = "rebalancer-enable" )
241296 private Boolean rebalancerEnable ;
242297
@@ -1015,4 +1070,116 @@ public AssignmentPolicy getAssignmentPolicy() {
10151070 public void setAssignmentPolicy (AssignmentPolicy assignmentPolicy ) {
10161071 this .assignmentPolicy = assignmentPolicy ;
10171072 }
1073+
1074+ public List <FieldIndex > getRangeFieldIndex () {
1075+ return rangeFieldIndex ;
1076+ }
1077+
1078+ public void setRangeFieldIndex (List <FieldIndex > rangeFieldIndex ) {
1079+ this .rangeFieldIndex = rangeFieldIndex ;
1080+ }
1081+
1082+ public List <ElementAttributeIndex > getRangeElementAttributeIndex () {
1083+ return rangeElementAttributeIndex ;
1084+ }
1085+
1086+ public void setRangeElementAttributeIndex (List <ElementAttributeIndex > rangeElementAttributeIndex ) {
1087+ this .rangeElementAttributeIndex = rangeElementAttributeIndex ;
1088+ }
1089+
1090+ public List <ElementWordLexicon > getElementWordLexicon () {
1091+ return elementWordLexicon ;
1092+ }
1093+
1094+ public void setElementWordLexicon (List <ElementWordLexicon > elementWordLexicon ) {
1095+ this .elementWordLexicon = elementWordLexicon ;
1096+ }
1097+
1098+ public List <ElementAttributeWordLexicon > getElementAttributeWordLexicon () {
1099+ return elementAttributeWordLexicon ;
1100+ }
1101+
1102+ public void setElementAttributeWordLexicon (List <ElementAttributeWordLexicon > elementAttributeWordLexicon ) {
1103+ this .elementAttributeWordLexicon = elementAttributeWordLexicon ;
1104+ }
1105+
1106+ public List <PathNamespace > getPathNamespace () {
1107+ return pathNamespace ;
1108+ }
1109+
1110+ public void setPathNamespace (List <PathNamespace > pathNamespace ) {
1111+ this .pathNamespace = pathNamespace ;
1112+ }
1113+
1114+ public List <GeospatialElementIndex > getGeospatialElementIndex () {
1115+ return geospatialElementIndex ;
1116+ }
1117+
1118+ public void setGeospatialElementIndex (List <GeospatialElementIndex > geospatialElementIndex ) {
1119+ this .geospatialElementIndex = geospatialElementIndex ;
1120+ }
1121+
1122+ public List <GeospatialElementChildIndex > getGeospatialElementChildIndex () {
1123+ return geospatialElementChildIndex ;
1124+ }
1125+
1126+ public void setGeospatialElementChildIndex (List <GeospatialElementChildIndex > geospatialElementChildIndex ) {
1127+ this .geospatialElementChildIndex = geospatialElementChildIndex ;
1128+ }
1129+
1130+ public List <GeospatialElementPairIndex > getGeospatialElementPairIndex () {
1131+ return geospatialElementPairIndex ;
1132+ }
1133+
1134+ public void setGeospatialElementPairIndex (List <GeospatialElementPairIndex > geospatialElementPairIndex ) {
1135+ this .geospatialElementPairIndex = geospatialElementPairIndex ;
1136+ }
1137+
1138+ public List <GeospatialElementPairIndex > getGeospatialElementAttributePairIndex () {
1139+ return geospatialElementAttributePairIndex ;
1140+ }
1141+
1142+ public void setGeospatialElementAttributePairIndex (List <GeospatialElementPairIndex > geospatialElementAttributePairIndex ) {
1143+ this .geospatialElementAttributePairIndex = geospatialElementAttributePairIndex ;
1144+ }
1145+
1146+ public List <GeospatialPathIndex > getGeospatialPathIndex () {
1147+ return geospatialPathIndex ;
1148+ }
1149+
1150+ public void setGeospatialPathIndex (List <GeospatialPathIndex > geospatialPathIndex ) {
1151+ this .geospatialPathIndex = geospatialPathIndex ;
1152+ }
1153+
1154+ public List <GeospatialRegionPathIndex > getGeospatialRegionPathIndex () {
1155+ return geospatialRegionPathIndex ;
1156+ }
1157+
1158+ public void setGeospatialRegionPathIndex (List <GeospatialRegionPathIndex > geospatialRegionPathIndex ) {
1159+ this .geospatialRegionPathIndex = geospatialRegionPathIndex ;
1160+ }
1161+
1162+ public List <DefaultRuleset > getDefaultRuleset () {
1163+ return defaultRuleset ;
1164+ }
1165+
1166+ public void setDefaultRuleset (List <DefaultRuleset > defaultRuleset ) {
1167+ this .defaultRuleset = defaultRuleset ;
1168+ }
1169+
1170+ public DatabaseReplication getDatabaseReplication () {
1171+ return databaseReplication ;
1172+ }
1173+
1174+ public void setDatabaseReplication (DatabaseReplication databaseReplication ) {
1175+ this .databaseReplication = databaseReplication ;
1176+ }
1177+
1178+ public List <DatabaseReference > getDatabaseReference () {
1179+ return databaseReference ;
1180+ }
1181+
1182+ public void setDatabaseReference (List <DatabaseReference > databaseReference ) {
1183+ this .databaseReference = databaseReference ;
1184+ }
10181185}
0 commit comments