+
\ No newline at end of file
diff --git a/Build/.gitignore b/Build/.gitignore
new file mode 100644
index 00000000..2a36a89e
--- /dev/null
+++ b/Build/.gitignore
@@ -0,0 +1,2 @@
+/apidocs
+/target
diff --git a/Build/README.md b/Build/README.md
new file mode 100644
index 00000000..b774c797
--- /dev/null
+++ b/Build/README.md
@@ -0,0 +1,32 @@
+OpenEstate-IO-Build 1.5
+=======================
+
+*OpenEstate-IO-Build* is a Java library, that provides some helper classes used to build the *OpenEstate-IO* libraries. This library is not required at runtime.
+
+
+Dependencies
+------------
+
+- Java 8 or newer
+- [jsonschema2pojo 1.1.1](https://github.com/joelittlejohn/jsonschema2pojo)
+
+
+Changelog
+---------
+
+Take a look at [`CHANGELOG.md`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md) for the full changelog.
+
+
+License
+-------
+
+This library is licensed under the terms of [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html). Take a look at [`LICENSE.txt`](https://github.com/OpenEstate/OpenEstate-IO/blob/develop/LICENSE.txt) for the license text.
+
+
+Further information
+-------------------
+
+- [*OpenEstate-IO* at GitHub](https://github.com/OpenEstate/OpenEstate-IO)
+- [Releases of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/releases)
+- [Changelog of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md)
+- [API documentation of *OpenEstate-IO*](https://media.openestate.org/apidocs/OpenEstate-IO/)
diff --git a/Build/pom.xml b/Build/pom.xml
new file mode 100644
index 00000000..ddae18dd
--- /dev/null
+++ b/Build/pom.xml
@@ -0,0 +1,109 @@
+
+
+ 4.0.0
+
+
+ org.openestate.io
+ OpenEstate-IO
+ 1.5
+
+
+ OpenEstate-IO-Build
+ 1.5
+ jar
+
+ OpenEstate-IO-Build
+
+ OpenEstate-IO-Build is a Java library, that provides some helper classes for the build process of OpenEstate-IO.
+
+ https://openestate.org
+
+ OpenEstate
+ https://openestate.org/
+
+
+
+ The Apache Software License, Version 2.0
+ https://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+ A business-friendly OSS license
+
+
+
+
+
+ andy
+ Andreas Rudolph
+ andy@openindex.de
+ OpenIndex
+ https://openindex.de/
+
+
+
+
+
+
+
+ org.jsonschema2pojo
+ jsonschema2pojo-core
+ compile
+
+
+
+
+ junit
+ junit
+ test
+
+
+ ch.qos.logback
+ logback-classic
+ test
+
+
+ org.slf4j
+ slf4j-api
+ test
+
+
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ 8
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+
+ true
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+
+
+
+ org.openestate.io.build
+
+
+
+
+
+
+
+
diff --git a/Build/src/main/java/org/openestate/io/build/CustomJsonRules.java b/Build/src/main/java/org/openestate/io/build/CustomJsonRules.java
new file mode 100644
index 00000000..7022fd43
--- /dev/null
+++ b/Build/src/main/java/org/openestate/io/build/CustomJsonRules.java
@@ -0,0 +1,119 @@
+/*
+ * Copyright 2015-2021 OpenEstate.org.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.openestate.io.build;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.sun.codemodel.JType;
+import java.util.HashMap;
+import java.util.Map;
+import org.jsonschema2pojo.GenerationConfig;
+import org.jsonschema2pojo.rules.RuleFactory;
+import org.jsonschema2pojo.util.NameHelper;
+
+/**
+ * A customized {@link RuleFactory} for creating Java objects from a JSON schema.
+ *
+ * This implementation fixes naming problems in generated getter, setter and with methods.
+ *
+ * @author Andreas Rudolph
+ * @since 1.5
+ */
+@SuppressWarnings("unused")
+public class CustomJsonRules extends RuleFactory {
+ private NameHelper nameHelper = null;
+
+ @Override
+ public synchronized NameHelper getNameHelper() {
+ if (this.nameHelper == null) {
+ this.nameHelper = new CustomNameHelper(this.getGenerationConfig());
+ }
+ return this.nameHelper;
+ }
+
+ private static class CustomNameHelper extends NameHelper {
+ private final Map names = new HashMap<>();
+
+ private CustomNameHelper(GenerationConfig generationConfig) {
+ super(generationConfig);
+ }
+
+ @Override
+ public String getBuilderName(String propertyName, JsonNode node) {
+ if (!node.has("javaName")) {
+ //System.out.println("getGetterName => '" + propertyName + "'");
+ if (this.names.containsKey(propertyName)) {
+ propertyName = this.names.get(propertyName);
+ //System.out.println("=> '" + propertyName + "'");
+ }
+ //else {
+ // System.out.println("=> UNKNOWN");
+ //}
+ }
+ //else {
+ // System.out.println(propertyName + " has javaName " + node.get("javaName").asText());
+ //}
+
+ return super.getBuilderName(propertyName, node);
+ }
+
+ @Override
+ public String getPropertyName(String jsonFieldName, JsonNode node) {
+ final String name = super.getPropertyName(jsonFieldName, node);
+
+ //System.out.println("getPropertyName '" + jsonFieldName + "' => '" + name + "'");
+ this.names.put(jsonFieldName, name);
+ return name;
+ }
+
+ @Override
+ public String getGetterName(String propertyName, JType type, JsonNode node) {
+ if (!node.has("javaName")) {
+ //System.out.println("getGetterName => '" + propertyName + "'");
+ if (this.names.containsKey(propertyName)) {
+ propertyName = this.names.get(propertyName);
+ //System.out.println("=> '" + propertyName + "'");
+ }
+ //else {
+ // System.out.println("=> UNKNOWN");
+ //}
+ }
+ //else {
+ // System.out.println(propertyName + " has javaName " + node.get("javaName").asText());
+ //}
+
+ return super.getGetterName(propertyName, type, node);
+ }
+
+ @Override
+ public String getSetterName(String propertyName, JsonNode node) {
+ if (!node.has("javaName")) {
+ //System.out.println("getSetterName => '" + propertyName + "'");
+ if (this.names.containsKey(propertyName)) {
+ propertyName = this.names.get(propertyName);
+ //System.out.println("=> '" + propertyName + "'");
+ }
+ //else {
+ // System.out.println("=> UNKNOWN");
+ //}
+ }
+ //else {
+ // System.out.println(propertyName + " has javaName " + node.get("javaName").asText());
+ //}
+
+ return super.getSetterName(propertyName, node);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Build/src/main/java/org/openestate/io/build/package-info.java b/Build/src/main/java/org/openestate/io/build/package-info.java
new file mode 100644
index 00000000..87207fc5
--- /dev/null
+++ b/Build/src/main/java/org/openestate/io/build/package-info.java
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2015-2021 OpenEstate.org.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Helper classes for building OpenEstate-IO libraries.
+ *
+ * These classes are not required at runtime.
+ *
+ * @author Andreas Rudolph
+ * @since 1.5
+ */
+package org.openestate.io.build;
diff --git a/Build/src/main/temp/module-info.java b/Build/src/main/temp/module-info.java
new file mode 100644
index 00000000..910ee399
--- /dev/null
+++ b/Build/src/main/temp/module-info.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2015-2021 OpenEstate.org.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Helper classes for building OpenEstate-IO libraries.
+ *
+ * @author Andreas Rudolph
+ * @since 1.5
+ */
+module org.openestate.io.build {
+ requires com.fasterxml.jackson.databind;
+ requires codemodel;
+ requires jsonschema2pojo.core;
+
+}
diff --git a/Build/src/test/resources/logback.xml b/Build/src/test/resources/logback.xml
new file mode 100644
index 00000000..6a3ab4da
--- /dev/null
+++ b/Build/src/test/resources/logback.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+ [%p] %msg%n
+
+
+
+
+
+
+
+
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97f63b8e..d148fe1f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,24 @@ Changelog for OpenEstate-IO
===========================
+1.5 (16 Aug 2021)
+-----------------
+
+- Compile for Java 8.
+- Provide JAXB as dependency for easier use in Java 9 and beyond.
+- Regenerated JAXB classes against with JAXB 2.3.
+- Add support for the XML format of immobar.it.
+- Add support for the JSON format of idealista.com.
+- Updated the XML format of immobiliare.it to version 2.8.
+- Replaced `jaxen` dependency with JDK's internal XPath engine.
+- Updated `commons-codec` library to version 1.15.
+- Updated `commons-csv` library to version 1.9.0.
+- Updated `commons-io` library to version 2.11.0.
+- Updated `commons-lang` library to version 3.12.0.
+- Updated `commons-text` library to version 1.9.
+- Updated `slf4j` libraries to version 1.7.30.
+
+
1.4 (09 Dec 2018)
-----------------
@@ -40,8 +58,7 @@ Changelog for OpenEstate-IO
- Updated `commons-lang` library to version 3.6.
- Add dependency to `commons-text` library in version 1.1.
- Support **OpenImmo** format in version 1.2.7b.
-- Update XML format of
- [wohnen-in-suedtirol.it](https://wohnen-in-suedtirol.it/) to version 2.2.
+- Update XML format of [wohnen-in-suedtirol.it](https://www.wohnen-in-suedtirol.it/) to version 2.2.
1.2 (14 May 2017)
@@ -51,8 +68,7 @@ Changelog for OpenEstate-IO
- Generated JAXB classes implement `java.io.Serializable`.
- Improved parsing of numeric values according to a certain locale.
-- Improved processing of certain simple types in **Kyero** / **Trovit** /
- **daft.ie** / **IS24-XML** format.
+- Improved processing of certain simple types in **Kyero** / **Trovit** / **daft.ie** / **IS24-XML** format.
- Dump CSV records into a human readable form.
- Updated `commons-csv` library to version 1.4.
- Updated `commons-io` library to version 2.5.
@@ -66,12 +82,9 @@ Changelog for OpenEstate-IO
### bugfixes
-- `xsd:positiveDecimal` / `xsd:positiveInteger` values are not printed
- correctly in **ImmoXML** / **DaftIE** / **OpenImmo** format
-- fixed printing of `posdecimal` / `xsd:positiveInteger` values in
- **ImmoXML** / **OpenImmo** format
-- numeric values are not strictly parsed in **IDX** / **ImmoXML** /
- **IS24-CSV** / **OpenImmo** / **Trovit** format
+- `xsd:positiveDecimal` / `xsd:positiveInteger` values are not printed correctly in **ImmoXML** / **DaftIE** / **OpenImmo** format
+- fixed printing of `posdecimal` / `xsd:positiveInteger` values in **ImmoXML** / **OpenImmo** format
+- numeric values are not strictly parsed in **IDX** / **ImmoXML** / **IS24-CSV** / **OpenImmo** / **Trovit** format
### updates
@@ -85,9 +98,7 @@ Changelog for OpenEstate-IO
### new features
-- The library is available through [Maven Central Repository](http://search.maven.org/#search|ga|1|org.openestate.io)
- from this release on. See [documentation page about Maven](https://github.com/OpenEstate/OpenEstate-IO/wiki/Integration-with-Maven)
- for more information.
+- The library is available through [Maven Central Repository](http://search.maven.org/#search|ga|1|org.openestate.io) from this release on. See [documentation page about Maven](https://github.com/OpenEstate/OpenEstate-IO/wiki/Integration-with-Maven) for more information.
- implemented *FMPXMLLAYOUT* & *FMPXMLRESULT* format of *Filemaker* databases
### updates
diff --git a/CasaIT/.gitignore b/CasaIT/.gitignore
index 48215a5c..2a36a89e 100644
--- a/CasaIT/.gitignore
+++ b/CasaIT/.gitignore
@@ -1,2 +1,2 @@
-release/
-target/
+/apidocs
+/target
diff --git a/CasaIT/README.md b/CasaIT/README.md
index 56146cf3..e796a669 100644
--- a/CasaIT/README.md
+++ b/CasaIT/README.md
@@ -1,54 +1,38 @@
-OpenEstate-IO-CasaIT 1.4
+OpenEstate-IO-CasaIT 1.5
========================
-*OpenEstate-IO-CasaIT* is a Java library to read and write real estate data in
-the XML format of [*casa.it*](https://www.casa.it).
+*OpenEstate-IO-CasaIT* is a Java library to read and write real estate data in the XML format of [*casa.it*](https://www.casa.it).
Warning
-------
-This is an experimental build, that was not used in production so far. The XML
-schema, that was provided to us by [*casa.it*](https://www.casa.it) may not be up to
-date anymore.
+This is an experimental build, that was not used in production so far. The XML schema, that was provided to us by [*casa.it*](https://www.casa.it) may not be up-to-date anymore.
Features
--------
-- read XML data according to the specifications of
- [*casa.it*](https://www.casa.it)
- (see [`CasaItReadingExample.java`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.4/Examples/src/main/java/org/openestate/io/examples/CasaItReadingExample.java))
-- write XML data according to the specifications of
- [*casa.it*](https://www.casa.it)
- (see [`CasaItWritingExample.java`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.4/Examples/src/main/java/org/openestate/io/examples/CasaItWritingExample.java))
+- read XML data according to the specifications of [*casa.it*](https://www.casa.it) (see [`CasaItReadingExample.java`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/Examples/src/main/java/org/openestate/io/examples/CasaItReadingExample.java))
+- write XML data according to the specifications of [*casa.it*](https://www.casa.it) (see [`CasaItWritingExample.java`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/Examples/src/main/java/org/openestate/io/examples/CasaItWritingExample.java))
How to use
----------
-Download the [latest release from GitHub](https://github.com/OpenEstate/OpenEstate-IO/releases/latest).
-The provided archive contains all required files (compiled libraries,
-dependencies, source code and documentations).
+Download the [latest release from GitHub](https://github.com/OpenEstate/OpenEstate-IO/releases/latest). The provided archive contains all required files (compiled libraries, dependencies, source code and documentations).
-Alternatively you can integrate the library from
-[Maven Central Repository](https://search.maven.org/#search|ga|1|org.openestate.io)
-into your [Maven](https://maven.apache.org/) project. Just add the following
-dependency to your projects `pom.xml`:
+Alternatively you can integrate the library from [Maven Central Repository](https://search.maven.org/#search|ga|1|org.openestate.io) into your [Maven](https://maven.apache.org/) project. Just add the following dependency to your projects `pom.xml`:
```xml
org.openestate.io
OpenEstate-IO-CasaIT
- 1.4
+ 1.5
```
-You can find further information in the
-[project wiki](https://github.com/OpenEstate/OpenEstate-IO/wiki/Usage-CasaIT).
-Some example classes for this format are available in the
-[`Examples`](https://github.com/OpenEstate/OpenEstate-IO/tree/v1.4/Examples)
-module.
+You can find further information in the [project wiki](https://github.com/OpenEstate/OpenEstate-IO/wiki/Usage-CasaIT). Some example classes for this format are available in the [`Examples`](https://github.com/OpenEstate/OpenEstate-IO/tree/v1.5/Examples) module.
Specifications
@@ -60,37 +44,52 @@ The specifications for this format are placed in the [`specs`](specs) folder.
Dependencies
------------
-- Java 7 or newer
-- [commons-codec 1.11](https://commons.apache.org/proper/commons-codec/)
-- [commons-io 2.6](https://commons.apache.org/proper/commons-io/)
-- [commons-lang 3.8.1](https://commons.apache.org/proper/commons-lang/)
-- [jaxb2-basics-runtime 0.11.1](https://github.com/highsource/jaxb2-basics)
-- [jaxen 1.1.6](https://github.com/jaxen-xpath/jaxen)
-- [SLF4J 1.7.25](https://www.slf4j.org/)
+- Java 8 or newer
+- [commons-codec 1.15](https://commons.apache.org/proper/commons-codec/)
+- [commons-io 2.11.0](https://commons.apache.org/proper/commons-io/)
+- [commons-lang 3.12.0](https://commons.apache.org/proper/commons-lang/)
+- [Eclipse Implementation of JAXB 2.3.5](https://projects.eclipse.org/projects/ee4j.jaxb-impl)
+- [Jakarta Activation 1.2.2](https://projects.eclipse.org/projects/ee4j.jaf)
+- [Jakarta Annotations 1.3.5](https://projects.eclipse.org/projects/ee4j.ca)
+- [Jakarta XML Binding 2.3.3](https://projects.eclipse.org/projects/ee4j.jaxb)
+- [jaxb2-basics-runtime 0.12.0](https://github.com/highsource/jaxb2-basics)
+- [SLF4J 1.7.30](https://www.slf4j.org/)
+
+
+Notes about JDK versions below 11
+---------------------------------
+
+JAXB is bundled with JDK 8, was disabled / deprecated in JDK 9 & 10 and finally removed in JDK 11. Therefore, we're providing JAXB as an explicit dependency. See also ["JAXB on Java 9, 10, 11 and beyond"](https://www.jesperdj.com/2018/09/30/jaxb-on-java-9-10-11-and-beyond/).
+
+It is recommended to use this library with JDK 11 as it should work out of the box. In case you're using JDK 8, you might need to follow one of these steps documented at ["JAXB Release Documentation"](https://javaee.github.io/jaxb-v2/doc/user-guide/release-documentation.html#deployment-migrating-jaxb-2-0-applications-to-javase-6):
+
+> JavaSE comes with JAXB 2.x API/implementation in `rt.jar`. Each version of JavaSE (6, 7, 8, ...) contains different version of JAXB 2.x API. Therefore, if you want to use different version of JAXB API/implementation than the one present in your version of JDK, you are required to override a portion of `rt.jar` with the new API. There are several ways to achieve this:
+>
+> 1. Place the `jakarta.xml.bind-api-X.Y.Z.jar` into `$JRE_HOME/lib/endorsed`. **Do not put other JAXB jars into the endorsed directory.** This essentially makes your JRE to "JRE X + JAXB 2.y". This would affect any other applications that use this JRE, and it's easy. On the other hand, in various scenarios you may not be able to alter the JRE.
+>
+> 2. Use the system property `java.endorsed.dirs` when you launch your application, and have it point to the directory which contains the `jakarta.xml.bind-api-X.Y.Z.jar` only. **The directory must not contain any other jaxb artifacts.** This allows you to use different version of JAXB for different applications.
+>
+> See the [endorsed directory mechanism](http://docs.oracle.com/javase/6/docs/technotes/guides/standards/) for more details.
+
+All provided dependencies should work with JDK 8. If compatibility problems occur, you might replace them with an earlier version.
Changelog
---------
-Take a look at
-[`CHANGELOG.md`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.4/CHANGELOG.md)
-for the full changelog.
+Take a look at [`CHANGELOG.md`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md) for the full changelog.
License
-------
-This library is licensed under the terms of
-[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
-Take a look at
-[`LICENSE.txt`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.4/LICENSE.txt)
-for the license text.
+This library is licensed under the terms of [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html). Take a look at [`LICENSE.txt`](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/LICENSE.txt) for the license text.
Further information
-------------------
-- [*OpenEstate-IO* at GitHub](https://github.com/OpenEstate/OpenEstate-IO)
-- [Releases of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/releases)
-- [Changelog of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.4/CHANGELOG.md)
-- [API documentation of *OpenEstate-IO*](https://media.openestate.org/apidocs/OpenEstate-IO/)
+- [*OpenEstate-IO* at GitHub](https://github.com/OpenEstate/OpenEstate-IO)
+- [Releases of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/releases)
+- [Changelog of *OpenEstate-IO*](https://github.com/OpenEstate/OpenEstate-IO/blob/v1.5/CHANGELOG.md)
+- [API documentation of *OpenEstate-IO*](https://media.openestate.org/apidocs/OpenEstate-IO/)
diff --git a/CasaIT/mvn-clean.sh b/CasaIT/mvn-clean.sh
index de39343b..c9c720a3 100755
--- a/CasaIT/mvn-clean.sh
+++ b/CasaIT/mvn-clean.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright 2015-2018 OpenEstate.org
+# Copyright 2015-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/CasaIT/mvn-install.sh b/CasaIT/mvn-install.sh
index 8a63ed5a..238910c9 100755
--- a/CasaIT/mvn-install.sh
+++ b/CasaIT/mvn-install.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright 2015-2018 OpenEstate.org
+# Copyright 2015-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/CasaIT/mvn-jaxb-xjc.sh b/CasaIT/mvn-jaxb-xjc.sh
index 48548ef2..be695755 100755
--- a/CasaIT/mvn-jaxb-xjc.sh
+++ b/CasaIT/mvn-jaxb-xjc.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright 2015-2018 OpenEstate.org
+# Copyright 2015-2021 OpenEstate.org
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -21,4 +21,4 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
set -e
export LANG=en
cd "$DIR"
-"$MVN" org.jvnet.jaxb2.maven2:maven-jaxb22-plugin:generate
+"$MVN" org.jvnet.jaxb2.maven2:maven-jaxb23-plugin:generate
diff --git a/CasaIT/pom.xml b/CasaIT/pom.xml
index a8bb7ee3..4cc76369 100644
--- a/CasaIT/pom.xml
+++ b/CasaIT/pom.xml
@@ -7,11 +7,11 @@
org.openestate.io
OpenEstate-IO
- 1.4
+ 1.5
OpenEstate-IO-CasaIT
- 1.4
+ 1.5
jar
OpenEstate-IO-CasaIT
@@ -26,7 +26,7 @@
The Apache Software License, Version 2.0
- http://www.apache.org/licenses/LICENSE-2.0.txt
+ https://www.apache.org/licenses/LICENSE-2.0.txt
repo
A business-friendly OSS license
@@ -45,12 +45,6 @@
-
- com.google.code.findbugs
- annotations
- compile
- true
-
commons-codec
commons-codec
@@ -67,23 +61,28 @@
compile
- org.jvnet.jaxb2_commons
- jaxb2-basics-runtime
+ jakarta.annotation
+ jakarta.annotation-api
compile
- jaxen
- jaxen
+ jakarta.xml.bind
+ jakarta.xml.bind-api
compile
- org.openestate.io
- OpenEstate-IO-Core
+ org.glassfish.jaxb
+ jaxb-runtime
+ runtime
+
+
+ org.jvnet.jaxb2_commons
+ jaxb2-basics-runtime
compile
- org.slf4j
- slf4j-api
+ org.openestate.io
+ OpenEstate-IO-Core
compile
@@ -94,13 +93,8 @@
test
- log4j
- log4j
- test
-
-
- org.slf4j
- slf4j-log4j12
+ ch.qos.logback
+ logback-classic
test
@@ -109,6 +103,15 @@
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ 8
+
+
+
org.codehaus.mojo
@@ -144,7 +147,7 @@
org.jvnet.jaxb2.maven2
- maven-jaxb22-plugin
+ maven-jaxb23-plugin
${project.basedir}/src/main/jaxb
${project.basedir}/src/main/schema
@@ -166,7 +169,7 @@
false
false
- 2.2
+ 2.3
true
true
diff --git a/CasaIT/specs/example.xml b/CasaIT/specs/example.xml
index 9b3c6248..2e91a41a 100644
--- a/CasaIT/specs/example.xml
+++ b/CasaIT/specs/example.xml
@@ -11,7 +11,7 @@
-
+
diff --git a/CasaIT/src/findbugs/exclude.xml b/CasaIT/src/findbugs/exclude.xml
deleted file mode 100644
index e77769d9..00000000
--- a/CasaIT/src/findbugs/exclude.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItDocument.java b/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItDocument.java
index 38d15379..a352f827 100644
--- a/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItDocument.java
+++ b/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItDocument.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2018 OpenEstate.org.
+ * Copyright 2015-2021 OpenEstate.org.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,6 +15,7 @@
*/
package org.openestate.io.casa_it;
+import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.parsers.ParserConfigurationException;
import org.openestate.io.casa_it.xml.Container;
@@ -26,13 +27,11 @@
import org.w3c.dom.Element;
/**
- * XML document from casa.it with a
- * <container> root element.
+ * XML document from casa.it with a <container> root element.
*
* @author Andreas Rudolph
* @since 1.0
*/
-@SuppressWarnings("WeakerAccess")
public class CasaItDocument extends XmlDocument {
@SuppressWarnings("unused")
private final static Logger LOGGER = LoggerFactory.getLogger(CasaItDocument.class);
@@ -79,19 +78,33 @@ public static CasaItDocument newDocument() throws ParserConfigurationException,
* @throws JAXBException if a problem with JAXB occurred
*/
public static CasaItDocument newDocument(Container container) throws ParserConfigurationException, JAXBException {
+ return newDocument(container, null);
+ }
+
+ /**
+ * Creates a {@link CasaItDocument} from a {@link Container} object.
+ *
+ * @param container Java object, that represents the <container> root element
+ * @param context JAXB context for marshalling
+ * @return created document
+ * @throws ParserConfigurationException if the parser is not properly configured
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ public static CasaItDocument newDocument(Container container, JAXBContext context) throws ParserConfigurationException, JAXBException {
Document document = XmlUtils.newDocument();
- CasaItUtils.createMarshaller("UTF-8", true).marshal(container, document);
+ CasaItUtils.createMarshaller("UTF-8", true, context).marshal(container, document);
return new CasaItDocument(document);
}
/**
* Creates a {@link Container} object from the contained {@link Document}.
*
+ * @param context JAXB context for unmarshalling
* @return created object, that represents the <container> root element
* @throws JAXBException if a problem with JAXB occurred
*/
@Override
- public Container toObject() throws JAXBException {
- return (Container) CasaItUtils.createUnmarshaller().unmarshal(this.getDocument());
+ public Container toObject(JAXBContext context) throws JAXBException {
+ return (Container) CasaItUtils.createUnmarshaller(context).unmarshal(this.getDocument());
}
}
\ No newline at end of file
diff --git a/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItUtils.java b/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItUtils.java
index 22cda613..40bef643 100644
--- a/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItUtils.java
+++ b/CasaIT/src/main/java/org/openestate/io/casa_it/CasaItUtils.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2018 OpenEstate.org.
+ * Copyright 2015-2021 OpenEstate.org.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,6 +20,8 @@
import java.io.InputStream;
import java.math.BigDecimal;
import java.nio.charset.Charset;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.DatatypeConverter;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
@@ -36,17 +38,15 @@
import org.xml.sax.SAXException;
/**
- * Some helper functions for the XML format of
- * casa.it.
+ * Some helper functions for the XML format of casa.it.
*
* @author Andreas Rudolph
* @since 1.0
*/
-@SuppressWarnings("WeakerAccess")
public class CasaItUtils {
@SuppressWarnings("unused")
private final static Logger LOGGER = LoggerFactory.getLogger(CasaItUtils.class);
- private static JAXBContext JAXB = null;
+ private static JAXBContext DEFAULT_CONTEXT = null;
/*
* the latest implemented version of this format
@@ -63,18 +63,70 @@ public class CasaItUtils {
/**
* the package, where generated JAXB classes are located
*/
- @SuppressWarnings("unused")
public final static String PACKAGE = "org.openestate.io.casa_it.xml";
/**
* the factory for creation of JAXB objects
*/
- @SuppressWarnings("unused")
public final static ObjectFactory FACTORY = new ObjectFactory();
private CasaItUtils() {
}
+ /**
+ * Creates a {@link JAXBContext} for this format.
+ *
+ * @return created JAXB context
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ @SuppressWarnings("unused")
+ public static JAXBContext createContext() throws JAXBException {
+ return createContext(null, null);
+ }
+
+ /**
+ * Creates a {@link JAXBContext} for this format.
+ *
+ * @param additionalJaxbPackages additional package with custom JAXB classes
+ * @return created JAXB context
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ @SuppressWarnings("unused")
+ public static JAXBContext createContext(List additionalJaxbPackages) throws JAXBException {
+ return createContext(additionalJaxbPackages, null);
+ }
+
+ /**
+ * Creates a {@link JAXBContext} for this format.
+ *
+ * @param classloader the classloader to load the generated JAXB classes with
+ * @return created JAXB context
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ public static JAXBContext createContext(ClassLoader classloader) throws JAXBException {
+ return createContext(null, classloader);
+ }
+
+ /**
+ * Creates a {@link JAXBContext} for this format.
+ *
+ * @param additionalJaxbPackages additional package with custom JAXB classes
+ * @param classloader the classloader to load the generated JAXB classes with
+ * @return created JAXB context
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ public static JAXBContext createContext(List additionalJaxbPackages, ClassLoader classloader) throws JAXBException {
+ final List packages = new ArrayList<>();
+ packages.add(PACKAGE);
+ if (additionalJaxbPackages != null && !additionalJaxbPackages.isEmpty())
+ packages.addAll(additionalJaxbPackages);
+
+ return JAXBContext.newInstance(
+ StringUtils.join(packages, ":"),
+ (classloader != null) ? classloader : Thread.currentThread().getContextClassLoader()
+ );
+ }
+
/**
* Creates a {@link CasaItDocument} from an {@link InputStream}.
*
@@ -135,7 +187,19 @@ public static CasaItDocument createDocument(Document doc) {
*/
@SuppressWarnings("unused")
public static Marshaller createMarshaller() throws JAXBException {
- return createMarshaller(Charset.defaultCharset().name(), true);
+ return createMarshaller(null, true, null);
+ }
+
+ /**
+ * Creates a {@link Marshaller} to write JAXB objects into XML.
+ *
+ * @param context context to create the marshaller on
+ * @return created marshaller
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ @SuppressWarnings("unused")
+ public static Marshaller createMarshaller(JAXBContext context) throws JAXBException {
+ return createMarshaller(null, true, context);
}
/**
@@ -146,36 +210,65 @@ public static Marshaller createMarshaller() throws JAXBException {
* @return created marshaller
* @throws JAXBException if a problem with JAXB occurred
*/
- @SuppressWarnings("Duplicates")
public static Marshaller createMarshaller(String encoding, boolean formatted) throws JAXBException {
- Marshaller m = getContext().createMarshaller();
- m.setProperty(Marshaller.JAXB_ENCODING, encoding);
+ return createMarshaller(encoding, formatted, null);
+ }
+
+ /**
+ * Creates a {@link Marshaller} to write JAXB objects into XML.
+ *
+ * @param encoding encoding of written XML
+ * @param formatted if written XML is pretty printed
+ * @param context context to create the marshaller on
+ * @return created marshaller
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ public static Marshaller createMarshaller(String encoding, boolean formatted, JAXBContext context) throws JAXBException {
+ final Marshaller m = (context != null) ?
+ context.createMarshaller() :
+ getContext().createMarshaller();
+
+ m.setProperty(Marshaller.JAXB_ENCODING, StringUtils.defaultIfBlank(encoding, Charset.defaultCharset().name()));
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, formatted);
m.setEventHandler(new XmlValidationHandler());
return m;
}
/**
- * Creates a {@link Unmarshaller} to read JAXB objects from XML.
+ * Creates an {@link Unmarshaller} to read JAXB objects from XML.
*
* @return created unmarshaller
* @throws JAXBException if a problem with JAXB occurred
*/
public static Unmarshaller createUnmarshaller() throws JAXBException {
- Unmarshaller m = getContext().createUnmarshaller();
+ return createUnmarshaller(null);
+ }
+
+ /**
+ * Creates an {@link Unmarshaller} to read JAXB objects from XML.
+ *
+ * @param context context to create the unmarshaller on
+ * @return created unmarshaller
+ * @throws JAXBException if a problem with JAXB occurred
+ */
+ public static Unmarshaller createUnmarshaller(JAXBContext context) throws JAXBException {
+ final Unmarshaller m = (context != null) ?
+ context.createUnmarshaller() :
+ getContext().createUnmarshaller();
+
m.setEventHandler(new XmlValidationHandler());
return m;
}
/**
- * Returns the {@link JAXBContext} for this format.
+ * Returns the default {@link JAXBContext} for this format.
*
* @return context
* @throws JAXBException if a problem with JAXB occurred
*/
public synchronized static JAXBContext getContext() throws JAXBException {
- if (JAXB == null) initContext(Thread.currentThread().getContextClassLoader());
- return JAXB;
+ if (DEFAULT_CONTEXT == null) initContext(null);
+ return DEFAULT_CONTEXT;
}
/**
@@ -188,13 +281,13 @@ public synchronized static ObjectFactory getFactory() {
}
/**
- * Initializes the {@link JAXBContext} for this format.
+ * Initializes the default {@link JAXBContext} for this format.
*
* @param classloader the classloader to load the generated JAXB classes with
* @throws JAXBException if a problem with JAXB occurred
*/
public synchronized static void initContext(ClassLoader classloader) throws JAXBException {
- JAXB = JAXBContext.newInstance(PACKAGE, classloader);
+ DEFAULT_CONTEXT = createContext(classloader);
}
public static BigDecimal parseDouble(String value) {
diff --git a/CasaIT/src/main/java/org/openestate/io/casa_it/package-info.java b/CasaIT/src/main/java/org/openestate/io/casa_it/package-info.java
index 5ced729a..bfed53fc 100644
--- a/CasaIT/src/main/java/org/openestate/io/casa_it/package-info.java
+++ b/CasaIT/src/main/java/org/openestate/io/casa_it/package-info.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2018 OpenEstate.org.
+ * Copyright 2015-2021 OpenEstate.org.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,8 +16,7 @@
/**
* EXPERIMENTAL: Read and write XML data for
- * casa.it.
- *
+ * casa.it.
*
* Warning
* This implementation is experimental and not used in productive environments
diff --git a/CasaIT/src/main/jaxb/META-INF/sun-jaxb.episode b/CasaIT/src/main/jaxb/META-INF/sun-jaxb.episode
index 43dcc062..5112e5a1 100644
--- a/CasaIT/src/main/jaxb/META-INF/sun-jaxb.episode
+++ b/CasaIT/src/main/jaxb/META-INF/sun-jaxb.episode
@@ -1,19 +1,29 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/Container.java b/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/Container.java
index b32fd597..68d62e71 100644
--- a/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/Container.java
+++ b/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/Container.java
@@ -416,11 +416,11 @@
"realestateitems"
})
@XmlRootElement(name = "container")
-@Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+@Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public class Container implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems realestateitems;
/**
@@ -431,7 +431,7 @@ public class Container implements Serializable, Cloneable, CopyTo2, Equals2, ToS
* {@link Container.Realestateitems }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems getRealestateitems() {
return realestateitems;
}
@@ -444,20 +444,20 @@ public Container.Realestateitems getRealestateitems() {
* {@link Container.Realestateitems }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setRealestateitems(Container.Realestateitems value) {
this.realestateitems = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -465,7 +465,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
Container.Realestateitems theRealestateitems;
@@ -475,18 +475,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container) {
@@ -508,12 +508,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -534,9 +534,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -918,12 +918,12 @@ public boolean equals(Object object) {
@XmlType(name = "", propOrder = {
"realestate"
})
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Realestateitems implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlElement(required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected List realestate;
/**
@@ -948,7 +948,7 @@ public static class Realestateitems implements Serializable, Cloneable, CopyTo2,
*
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public List getRealestate() {
if (realestate == null) {
realestate = new ArrayList();
@@ -956,15 +956,15 @@ public List getRealestate() {
return this.realestate;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -972,7 +972,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
List theRealestate;
@@ -982,18 +982,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems) {
@@ -1020,12 +1020,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -1046,9 +1046,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -1428,75 +1428,75 @@ public boolean equals(Object object) {
"googlemapcoordinate",
"images"
})
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Realestate implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Address address;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Description description;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Building building;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Price price;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Box box;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Garden garden;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Configuration configuration;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Googlemapcoordinate googlemapcoordinate;
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Container.Realestateitems.Realestate.Images images;
@XmlAttribute(name = "action", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger action;
@XmlAttribute(name = "agencycode", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected int agencycode;
@XmlAttribute(name = "reference", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String reference;
@XmlAttribute(name = "referenceID")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Integer referenceID;
@XmlAttribute(name = "contracttype", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger contracttype;
@XmlAttribute(name = "condition")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger condition;
@XmlAttribute(name = "hasbalcony")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean hasbalcony;
@XmlAttribute(name = "hasterrace")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean hasterrace;
@XmlAttribute(name = "heatingtype")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger heatingtype;
@XmlAttribute(name = "housetypology", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger housetypology;
@XmlAttribute(name = "bathrooms")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger bathrooms;
@XmlAttribute(name = "floor")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger floor;
@XmlAttribute(name = "rooms")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger rooms;
@XmlAttribute(name = "occupationstate")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger occupationstate;
@XmlAttribute(name = "realestatetype", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger realestatetype;
@XmlAttribute(name = "size", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger size;
/**
@@ -1507,7 +1507,7 @@ public static class Realestate implements Serializable, Cloneable, CopyTo2, Equa
* {@link Container.Realestateitems.Realestate.Address }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Address getAddress() {
return address;
}
@@ -1520,7 +1520,7 @@ public Container.Realestateitems.Realestate.Address getAddress() {
* {@link Container.Realestateitems.Realestate.Address }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setAddress(Container.Realestateitems.Realestate.Address value) {
this.address = value;
}
@@ -1533,7 +1533,7 @@ public void setAddress(Container.Realestateitems.Realestate.Address value) {
* {@link Container.Realestateitems.Realestate.Description }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Description getDescription() {
return description;
}
@@ -1546,7 +1546,7 @@ public Container.Realestateitems.Realestate.Description getDescription() {
* {@link Container.Realestateitems.Realestate.Description }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setDescription(Container.Realestateitems.Realestate.Description value) {
this.description = value;
}
@@ -1559,7 +1559,7 @@ public void setDescription(Container.Realestateitems.Realestate.Description valu
* {@link Container.Realestateitems.Realestate.Building }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Building getBuilding() {
return building;
}
@@ -1572,7 +1572,7 @@ public Container.Realestateitems.Realestate.Building getBuilding() {
* {@link Container.Realestateitems.Realestate.Building }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setBuilding(Container.Realestateitems.Realestate.Building value) {
this.building = value;
}
@@ -1585,7 +1585,7 @@ public void setBuilding(Container.Realestateitems.Realestate.Building value) {
* {@link Container.Realestateitems.Realestate.Price }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Price getPrice() {
return price;
}
@@ -1598,7 +1598,7 @@ public Container.Realestateitems.Realestate.Price getPrice() {
* {@link Container.Realestateitems.Realestate.Price }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setPrice(Container.Realestateitems.Realestate.Price value) {
this.price = value;
}
@@ -1611,7 +1611,7 @@ public void setPrice(Container.Realestateitems.Realestate.Price value) {
* {@link Container.Realestateitems.Realestate.Box }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Box getBox() {
return box;
}
@@ -1624,7 +1624,7 @@ public Container.Realestateitems.Realestate.Box getBox() {
* {@link Container.Realestateitems.Realestate.Box }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setBox(Container.Realestateitems.Realestate.Box value) {
this.box = value;
}
@@ -1637,7 +1637,7 @@ public void setBox(Container.Realestateitems.Realestate.Box value) {
* {@link Container.Realestateitems.Realestate.Garden }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Garden getGarden() {
return garden;
}
@@ -1650,7 +1650,7 @@ public Container.Realestateitems.Realestate.Garden getGarden() {
* {@link Container.Realestateitems.Realestate.Garden }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setGarden(Container.Realestateitems.Realestate.Garden value) {
this.garden = value;
}
@@ -1663,7 +1663,7 @@ public void setGarden(Container.Realestateitems.Realestate.Garden value) {
* {@link Container.Realestateitems.Realestate.Configuration }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Configuration getConfiguration() {
return configuration;
}
@@ -1676,7 +1676,7 @@ public Container.Realestateitems.Realestate.Configuration getConfiguration() {
* {@link Container.Realestateitems.Realestate.Configuration }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setConfiguration(Container.Realestateitems.Realestate.Configuration value) {
this.configuration = value;
}
@@ -1689,7 +1689,7 @@ public void setConfiguration(Container.Realestateitems.Realestate.Configuration
* {@link Container.Realestateitems.Realestate.Googlemapcoordinate }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Googlemapcoordinate getGooglemapcoordinate() {
return googlemapcoordinate;
}
@@ -1702,7 +1702,7 @@ public Container.Realestateitems.Realestate.Googlemapcoordinate getGooglemapcoor
* {@link Container.Realestateitems.Realestate.Googlemapcoordinate }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setGooglemapcoordinate(Container.Realestateitems.Realestate.Googlemapcoordinate value) {
this.googlemapcoordinate = value;
}
@@ -1715,7 +1715,7 @@ public void setGooglemapcoordinate(Container.Realestateitems.Realestate.Googlema
* {@link Container.Realestateitems.Realestate.Images }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Container.Realestateitems.Realestate.Images getImages() {
return images;
}
@@ -1728,7 +1728,7 @@ public Container.Realestateitems.Realestate.Images getImages() {
* {@link Container.Realestateitems.Realestate.Images }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setImages(Container.Realestateitems.Realestate.Images value) {
this.images = value;
}
@@ -1741,7 +1741,7 @@ public void setImages(Container.Realestateitems.Realestate.Images value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getAction() {
return action;
}
@@ -1754,7 +1754,7 @@ public BigInteger getAction() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setAction(BigInteger value) {
this.action = value;
}
@@ -1763,7 +1763,7 @@ public void setAction(BigInteger value) {
* Gets the value of the agencycode property.
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public int getAgencycode() {
return agencycode;
}
@@ -1772,7 +1772,7 @@ public int getAgencycode() {
* Sets the value of the agencycode property.
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setAgencycode(int value) {
this.agencycode = value;
}
@@ -1785,7 +1785,7 @@ public void setAgencycode(int value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getReference() {
return reference;
}
@@ -1798,7 +1798,7 @@ public String getReference() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setReference(String value) {
this.reference = value;
}
@@ -1811,7 +1811,7 @@ public void setReference(String value) {
* {@link Integer }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Integer getReferenceID() {
return referenceID;
}
@@ -1824,7 +1824,7 @@ public Integer getReferenceID() {
* {@link Integer }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setReferenceID(Integer value) {
this.referenceID = value;
}
@@ -1837,7 +1837,7 @@ public void setReferenceID(Integer value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getContracttype() {
return contracttype;
}
@@ -1850,7 +1850,7 @@ public BigInteger getContracttype() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setContracttype(BigInteger value) {
this.contracttype = value;
}
@@ -1863,7 +1863,7 @@ public void setContracttype(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getCondition() {
return condition;
}
@@ -1876,7 +1876,7 @@ public BigInteger getCondition() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setCondition(BigInteger value) {
this.condition = value;
}
@@ -1889,7 +1889,7 @@ public void setCondition(BigInteger value) {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getHasbalcony() {
return hasbalcony;
}
@@ -1902,7 +1902,7 @@ public Boolean getHasbalcony() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setHasbalcony(Boolean value) {
this.hasbalcony = value;
}
@@ -1915,7 +1915,7 @@ public void setHasbalcony(Boolean value) {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getHasterrace() {
return hasterrace;
}
@@ -1928,7 +1928,7 @@ public Boolean getHasterrace() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setHasterrace(Boolean value) {
this.hasterrace = value;
}
@@ -1941,7 +1941,7 @@ public void setHasterrace(Boolean value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getHeatingtype() {
return heatingtype;
}
@@ -1954,7 +1954,7 @@ public BigInteger getHeatingtype() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setHeatingtype(BigInteger value) {
this.heatingtype = value;
}
@@ -1967,7 +1967,7 @@ public void setHeatingtype(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getHousetypology() {
return housetypology;
}
@@ -1980,7 +1980,7 @@ public BigInteger getHousetypology() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setHousetypology(BigInteger value) {
this.housetypology = value;
}
@@ -1993,7 +1993,7 @@ public void setHousetypology(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getBathrooms() {
return bathrooms;
}
@@ -2006,7 +2006,7 @@ public BigInteger getBathrooms() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setBathrooms(BigInteger value) {
this.bathrooms = value;
}
@@ -2019,7 +2019,7 @@ public void setBathrooms(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getFloor() {
return floor;
}
@@ -2032,7 +2032,7 @@ public BigInteger getFloor() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setFloor(BigInteger value) {
this.floor = value;
}
@@ -2045,7 +2045,7 @@ public void setFloor(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getRooms() {
return rooms;
}
@@ -2058,7 +2058,7 @@ public BigInteger getRooms() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setRooms(BigInteger value) {
this.rooms = value;
}
@@ -2071,7 +2071,7 @@ public void setRooms(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getOccupationstate() {
return occupationstate;
}
@@ -2084,7 +2084,7 @@ public BigInteger getOccupationstate() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setOccupationstate(BigInteger value) {
this.occupationstate = value;
}
@@ -2097,7 +2097,7 @@ public void setOccupationstate(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getRealestatetype() {
return realestatetype;
}
@@ -2110,7 +2110,7 @@ public BigInteger getRealestatetype() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setRealestatetype(BigInteger value) {
this.realestatetype = value;
}
@@ -2123,7 +2123,7 @@ public void setRealestatetype(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getSize() {
return size;
}
@@ -2136,20 +2136,20 @@ public BigInteger getSize() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setSize(BigInteger value) {
this.size = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -2157,7 +2157,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
Container.Realestateitems.Realestate.Address theAddress;
@@ -2287,18 +2287,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate) {
@@ -2631,12 +2631,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -2873,9 +2873,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -2909,24 +2909,24 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Address implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "city", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String city;
@XmlAttribute(name = "zone")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String zone;
@XmlAttribute(name = "street")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String street;
@XmlAttribute(name = "number")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String number;
@XmlAttribute(name = "zip")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String zip;
/**
@@ -2937,7 +2937,7 @@ public static class Address implements Serializable, Cloneable, CopyTo2, Equals2
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getCity() {
return city;
}
@@ -2950,7 +2950,7 @@ public String getCity() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setCity(String value) {
this.city = value;
}
@@ -2963,7 +2963,7 @@ public void setCity(String value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getZone() {
return zone;
}
@@ -2976,7 +2976,7 @@ public String getZone() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setZone(String value) {
this.zone = value;
}
@@ -2989,7 +2989,7 @@ public void setZone(String value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getStreet() {
return street;
}
@@ -3002,7 +3002,7 @@ public String getStreet() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setStreet(String value) {
this.street = value;
}
@@ -3015,7 +3015,7 @@ public void setStreet(String value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getNumber() {
return number;
}
@@ -3028,7 +3028,7 @@ public String getNumber() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setNumber(String value) {
this.number = value;
}
@@ -3041,7 +3041,7 @@ public void setNumber(String value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getZip() {
return zip;
}
@@ -3054,20 +3054,20 @@ public String getZip() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setZip(String value) {
this.zip = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -3075,7 +3075,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
String theCity;
@@ -3105,18 +3105,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Address) {
@@ -3190,12 +3190,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Address();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -3252,9 +3252,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -3297,15 +3297,15 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Box implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "size")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger size;
@XmlAttribute(name = "type")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger type;
/**
@@ -3316,7 +3316,7 @@ public static class Box implements Serializable, Cloneable, CopyTo2, Equals2, To
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getSize() {
return size;
}
@@ -3329,7 +3329,7 @@ public BigInteger getSize() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setSize(BigInteger value) {
this.size = value;
}
@@ -3342,7 +3342,7 @@ public void setSize(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getType() {
return type;
}
@@ -3355,20 +3355,20 @@ public BigInteger getType() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setType(BigInteger value) {
this.type = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -3376,7 +3376,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
BigInteger theSize;
@@ -3391,18 +3391,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Box) {
@@ -3437,12 +3437,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Box();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -3472,9 +3472,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -3528,24 +3528,24 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Building implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "age")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger age;
@XmlAttribute(name = "expenses")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal expenses;
@XmlAttribute(name = "units")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger units;
@XmlAttribute(name = "totalfloors")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger totalfloors;
@XmlAttribute(name = "haslift")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean haslift;
/**
@@ -3556,7 +3556,7 @@ public static class Building implements Serializable, Cloneable, CopyTo2, Equals
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getAge() {
return age;
}
@@ -3569,7 +3569,7 @@ public BigInteger getAge() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setAge(BigInteger value) {
this.age = value;
}
@@ -3582,7 +3582,7 @@ public void setAge(BigInteger value) {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getExpenses() {
return expenses;
}
@@ -3595,7 +3595,7 @@ public BigDecimal getExpenses() {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setExpenses(BigDecimal value) {
this.expenses = value;
}
@@ -3608,7 +3608,7 @@ public void setExpenses(BigDecimal value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getUnits() {
return units;
}
@@ -3621,7 +3621,7 @@ public BigInteger getUnits() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setUnits(BigInteger value) {
this.units = value;
}
@@ -3634,7 +3634,7 @@ public void setUnits(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getTotalfloors() {
return totalfloors;
}
@@ -3647,7 +3647,7 @@ public BigInteger getTotalfloors() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setTotalfloors(BigInteger value) {
this.totalfloors = value;
}
@@ -3660,7 +3660,7 @@ public void setTotalfloors(BigInteger value) {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getHaslift() {
return haslift;
}
@@ -3673,20 +3673,20 @@ public Boolean getHaslift() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setHaslift(Boolean value) {
this.haslift = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -3694,7 +3694,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
BigInteger theAge;
@@ -3724,18 +3724,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Building) {
@@ -3809,12 +3809,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Building();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -3871,9 +3871,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -3901,18 +3901,18 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Configuration implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "isaddressvisibleonsite")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean isaddressvisibleonsite;
@XmlAttribute(name = "ismapvisible")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean ismapvisible;
@XmlAttribute(name = "isrealestatevisibleonmap")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Boolean isrealestatevisibleonmap;
/**
@@ -3923,7 +3923,7 @@ public static class Configuration implements Serializable, Cloneable, CopyTo2, E
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getIsaddressvisibleonsite() {
if (isaddressvisibleonsite == null) {
return false;
@@ -3940,7 +3940,7 @@ public Boolean getIsaddressvisibleonsite() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setIsaddressvisibleonsite(Boolean value) {
this.isaddressvisibleonsite = value;
}
@@ -3953,7 +3953,7 @@ public void setIsaddressvisibleonsite(Boolean value) {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getIsmapvisible() {
if (ismapvisible == null) {
return false;
@@ -3970,7 +3970,7 @@ public Boolean getIsmapvisible() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setIsmapvisible(Boolean value) {
this.ismapvisible = value;
}
@@ -3983,7 +3983,7 @@ public void setIsmapvisible(Boolean value) {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Boolean getIsrealestatevisibleonmap() {
if (isrealestatevisibleonmap == null) {
return false;
@@ -4000,20 +4000,20 @@ public Boolean getIsrealestatevisibleonmap() {
* {@link Boolean }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setIsrealestatevisibleonmap(Boolean value) {
this.isrealestatevisibleonmap = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -4021,7 +4021,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
Boolean theIsaddressvisibleonsite;
@@ -4041,18 +4041,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Configuration) {
@@ -4100,12 +4100,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Configuration();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -4144,9 +4144,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -4178,12 +4178,12 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Description implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "value", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String value;
/**
@@ -4194,7 +4194,7 @@ public static class Description implements Serializable, Cloneable, CopyTo2, Equ
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getValue() {
return value;
}
@@ -4207,20 +4207,20 @@ public String getValue() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setValue(String value) {
this.value = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -4228,7 +4228,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
String theValue;
@@ -4238,18 +4238,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Description) {
@@ -4271,12 +4271,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Description();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -4297,9 +4297,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -4341,15 +4341,15 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Garden implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "size")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger size;
@XmlAttribute(name = "type")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigInteger type;
/**
@@ -4360,7 +4360,7 @@ public static class Garden implements Serializable, Cloneable, CopyTo2, Equals2,
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getSize() {
return size;
}
@@ -4373,7 +4373,7 @@ public BigInteger getSize() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setSize(BigInteger value) {
this.size = value;
}
@@ -4386,7 +4386,7 @@ public void setSize(BigInteger value) {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigInteger getType() {
return type;
}
@@ -4399,20 +4399,20 @@ public BigInteger getType() {
* {@link BigInteger }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setType(BigInteger value) {
this.type = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -4420,7 +4420,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
BigInteger theSize;
@@ -4435,18 +4435,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Garden) {
@@ -4481,12 +4481,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Garden();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -4516,9 +4516,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -4548,32 +4548,32 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Googlemapcoordinate implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "latitude")
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "double")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal latitude;
@XmlAttribute(name = "longitude")
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "double")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal longitude;
@XmlAttribute(name = "mapzoom")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected Integer mapzoom;
@XmlAttribute(name = "latitudemapcenter")
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "double")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal latitudemapcenter;
@XmlAttribute(name = "longitudemapcenter")
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "double")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal longitudemapcenter;
/**
@@ -4584,7 +4584,7 @@ public static class Googlemapcoordinate implements Serializable, Cloneable, Copy
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getLatitude() {
return latitude;
}
@@ -4597,7 +4597,7 @@ public BigDecimal getLatitude() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setLatitude(BigDecimal value) {
this.latitude = value;
}
@@ -4610,7 +4610,7 @@ public void setLatitude(BigDecimal value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getLongitude() {
return longitude;
}
@@ -4623,7 +4623,7 @@ public BigDecimal getLongitude() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setLongitude(BigDecimal value) {
this.longitude = value;
}
@@ -4636,7 +4636,7 @@ public void setLongitude(BigDecimal value) {
* {@link Integer }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Integer getMapzoom() {
return mapzoom;
}
@@ -4649,7 +4649,7 @@ public Integer getMapzoom() {
* {@link Integer }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setMapzoom(Integer value) {
this.mapzoom = value;
}
@@ -4662,7 +4662,7 @@ public void setMapzoom(Integer value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getLatitudemapcenter() {
return latitudemapcenter;
}
@@ -4675,7 +4675,7 @@ public BigDecimal getLatitudemapcenter() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setLatitudemapcenter(BigDecimal value) {
this.latitudemapcenter = value;
}
@@ -4688,7 +4688,7 @@ public void setLatitudemapcenter(BigDecimal value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getLongitudemapcenter() {
return longitudemapcenter;
}
@@ -4701,20 +4701,20 @@ public BigDecimal getLongitudemapcenter() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setLongitudemapcenter(BigDecimal value) {
this.longitudemapcenter = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -4722,7 +4722,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
BigDecimal theLatitude;
@@ -4752,18 +4752,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Googlemapcoordinate) {
@@ -4837,12 +4837,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Googlemapcoordinate();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -4899,9 +4899,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -4947,12 +4947,12 @@ public boolean equals(Object object) {
@XmlType(name = "", propOrder = {
"advertismentimage"
})
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Images implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlElement(required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected List advertismentimage;
/**
@@ -4977,7 +4977,7 @@ public static class Images implements Serializable, Cloneable, CopyTo2, Equals2,
*
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public List getAdvertismentimage() {
if (advertismentimage == null) {
advertismentimage = new ArrayList();
@@ -4985,15 +4985,15 @@ public List getAd
return this.advertismentimage;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -5001,7 +5001,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
List theAdvertismentimage;
@@ -5011,18 +5011,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Images) {
@@ -5049,12 +5049,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Images();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -5075,9 +5075,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -5109,15 +5109,15 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Advertismentimage implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "path", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String path;
@XmlAttribute(name = "imagetype", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected String imagetype;
/**
@@ -5128,7 +5128,7 @@ public static class Advertismentimage implements Serializable, Cloneable, CopyTo
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getPath() {
return path;
}
@@ -5141,7 +5141,7 @@ public String getPath() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setPath(String value) {
this.path = value;
}
@@ -5154,7 +5154,7 @@ public void setPath(String value) {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String getImagetype() {
return imagetype;
}
@@ -5167,20 +5167,20 @@ public String getImagetype() {
* {@link String }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setImagetype(String value) {
this.imagetype = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -5188,7 +5188,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
String thePath;
@@ -5203,18 +5203,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Images.Advertismentimage) {
@@ -5249,12 +5249,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Images.Advertismentimage();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -5284,9 +5284,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
@@ -5334,18 +5334,18 @@ public boolean equals(Object object) {
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public static class Price implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
@XmlAttribute(name = "value")
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal value;
@XmlAttribute(name = "min", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal min;
@XmlAttribute(name = "max", required = true)
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
protected BigDecimal max;
/**
@@ -5356,7 +5356,7 @@ public static class Price implements Serializable, Cloneable, CopyTo2, Equals2,
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getValue() {
return value;
}
@@ -5369,7 +5369,7 @@ public BigDecimal getValue() {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setValue(BigDecimal value) {
this.value = value;
}
@@ -5382,7 +5382,7 @@ public void setValue(BigDecimal value) {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getMin() {
return min;
}
@@ -5395,7 +5395,7 @@ public BigDecimal getMin() {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setMin(BigDecimal value) {
this.min = value;
}
@@ -5408,7 +5408,7 @@ public void setMin(BigDecimal value) {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public BigDecimal getMax() {
return max;
}
@@ -5421,20 +5421,20 @@ public BigDecimal getMax() {
* {@link BigDecimal }
*
*/
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public void setMax(BigDecimal value) {
this.max = value;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public String toString() {
- final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE;
+ final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE2;
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
@@ -5442,7 +5442,7 @@ public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStrin
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
BigDecimal theValue;
@@ -5462,18 +5462,18 @@ public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, T
return buffer;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object clone() {
return copyTo(createNewInstance());
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(Object target) {
- final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
+ final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE2;
return copyTo(null, target, strategy);
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
if (draftCopy instanceof Container.Realestateitems.Realestate.Price) {
@@ -5521,12 +5521,12 @@ public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strateg
return draftCopy;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public Object createNewInstance() {
return new Container.Realestateitems.Realestate.Price();
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
@@ -5565,9 +5565,9 @@ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Obje
return true;
}
- @Generated(value = "com.sun.tools.xjc.Driver", date = "2018-10-12T02:41:02+02:00", comments = "JAXB RI v2.2.11")
+ @Generated(value = "com.sun.tools.xjc.Driver", date = "2021-08-07T06:28:55+02:00", comments = "JAXB RI v2.3.0")
public boolean equals(Object object) {
- final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
+ final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE2;
return equals(null, null, object, strategy);
}
diff --git a/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/package.html b/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/package.html
index 126237a1..7d3effc7 100644
--- a/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/package.html
+++ b/CasaIT/src/main/jaxb/org/openestate/io/casa_it/xml/package.html
@@ -1,5 +1,5 @@
-EXPERIMENTAL: Generated JAXB classes to read and write XML files for casa.it.
+EXPERIMENTAL: Generated JAXB classes to read and write XML files for casa.it.
Warning
This implementation is experimental and not used in productive environments so far!
\ No newline at end of file
diff --git a/CasaIT/src/main/schema/binding.xjb b/CasaIT/src/main/schema/binding.xjb
index 1826fe3d..e52593b7 100644
--- a/CasaIT/src/main/schema/binding.xjb
+++ b/CasaIT/src/main/schema/binding.xjb
@@ -15,7 +15,7 @@
-EXPERIMENTAL: Generated JAXB classes to read and write XML files for casa.it.
+EXPERIMENTAL: Generated JAXB classes to read and write XML files for casa.it.
Warning
This implementation is experimental and not used in productive environments so far!