diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index e72831bc3..a760297c4 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -2,6 +2,12 @@
Prowide ISO 20022 - CHANGELOG
-----------------------------------------------------------------------------------------------------------------------
+9.2.6 SNAPSHOT
+ * (GH-36) Added customizable datetime, date and time adapter in the MxWriteConfiguration, MxReadConfiguration
+ * Changed the default date time serialization to local time with UTC offset format YYYY-MM-DDThh:mm:ss.sss+/-hh:mm
+ * Encapsulated the serialization options in a DTO, when calling xml or message methods in AbstractMX and AppHdr
+ * Validate.notNull -> Objects.requireNonNull
+
RELEASE 9.2.5 - January 2022
* (GH-37) Updated dependency: gson:2.8.8 -> gson:2.8.9
diff --git a/build.gradle b/build.gradle
index cddc92045..def10dd2f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,7 +5,7 @@ apply plugin: 'maven-publish'
def SRU = "2021"
-version = "SRU${SRU}-9.2.5"
+version = "SRU${SRU}-9.2.6-SNAPSHOT"
group 'com.prowidesoftware'
sourceCompatibility = '1.8'
@@ -191,7 +191,7 @@ javadoc {
// declared dependencies for pom generation
dependencies {
// included build (keep in sync with the latest Prowide Core version)
- api 'com.prowidesoftware:pw-swift-core:SRU2021-9.2.10'
+ api 'com.prowidesoftware:pw-swift-core:SRU2021-9.2.11'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.code.gson:gson:2.8.9'
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/io/parser/MxParser.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/io/parser/MxParser.java
index 13e08ecf4..b2d8ffca7 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/io/parser/MxParser.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/io/parser/MxParser.java
@@ -26,7 +26,6 @@
import com.prowidesoftware.swift.utils.Lib;
import com.prowidesoftware.swift.utils.SafeXmlUtils;
import org.apache.commons.lang3.StringUtils;
-import org.apache.commons.lang3.Validate;
import org.w3c.dom.Element;
import org.w3c.dom.ls.DOMImplementationLS;
import org.w3c.dom.ls.LSSerializer;
@@ -35,6 +34,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
+import java.util.Objects;
import java.util.Optional;
import java.util.logging.Level;
@@ -74,7 +74,7 @@ public class MxParser {
@Deprecated
@ProwideDeprecated(phase3 = TargetYear.SRU2022)
public MxParser(final File file) throws IOException {
- Validate.notNull(file);
+ Objects.requireNonNull(file);
this.buffer = Lib.readFile(file);
DeprecationUtils.phase2(MxParser.class, "MxParser(File)", "The MxParser class is no longer useful or has been replaced by similar features in AbstractMX, AppHdr, AppHdrParser, MxNode or MxParseUtils");
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxId.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxId.java
index f97230cd8..42c6556fa 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxId.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxId.java
@@ -53,7 +53,7 @@ public MxId() {
* @throws IllegalArgumentException if namespace parameter cannot be parsed as MX identification
*/
public MxId(final String namespace) {
- Validate.notNull(namespace);
+ Objects.requireNonNull(namespace);
final Matcher matcher = pattern.matcher(namespace);
if (matcher.matches()) {
final String bpStr = matcher.group(1);
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxNode.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxNode.java
index 04d7ddd46..0278daa4f 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxNode.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxNode.java
@@ -23,10 +23,7 @@
import java.io.IOException;
import java.io.PrintStream;
import java.io.StringReader;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
+import java.util.*;
import java.util.logging.Level;
/**
@@ -65,7 +62,7 @@ public MxNode(final MxNode parent, final String localName) {
* @since 9.1.2
*/
public static MxNode parse(final String xml) {
- Validate.notNull(xml, "the XML to parser cannot be null");
+ Objects.requireNonNull(xml, "the XML to parser cannot be null");
Validate.notBlank(xml, "the XML to parser cannot be blank");
try {
XMLReader xmlReader = SafeXmlUtils.reader(true, null);
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxSwiftMessage.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxSwiftMessage.java
index 8d824c40a..0722b07f6 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxSwiftMessage.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/MxSwiftMessage.java
@@ -174,8 +174,8 @@ public MxSwiftMessage(final AbstractMX mx) {
public MxSwiftMessage(final AbstractMX mx, final MessageMetadataStrategy metadataStrategy) {
// instead of reusing the constructor from XML with mx.message() as parameter
// we set the message and run the update directly to avoid an unnecessary message type detection
- Validate.notNull(mx, "the message model cannot be null");
- Validate.notNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
+ Objects.requireNonNull(mx, "the message model cannot be null");
+ Objects.requireNonNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
setMessage(mx.message());
_updateFromMessage(mx.getMxId(), metadataStrategy);
}
@@ -239,7 +239,7 @@ protected void updateFromMessage() {
*/
@Override
protected void updateFromMessage(final MessageMetadataStrategy metadataStrategy) {
- Validate.notNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
+ Objects.requireNonNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
_updateFromMessage(null, metadataStrategy);
}
@@ -262,8 +262,8 @@ public void updateFromModel(final AbstractMX mx) {
}
public void updateFromModel(final AbstractMX mx, final MessageMetadataStrategy metadataStrategy) {
- Validate.notNull(mx, "the mx parameter cannot be null");
- Validate.notNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
+ Objects.requireNonNull(mx, "the mx parameter cannot be null");
+ Objects.requireNonNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
setMessage(mx.message());
setFileFormat(FileFormat.MX);
extractMetadata(mx.getMxId(), mx.getAppHdr(), metadataStrategy);
@@ -360,8 +360,8 @@ public void updateFromXML(final String xml, final MxId id) {
* @since 9.1.6
*/
public void updateFromXML(final String xml, final MxId id, final MessageMetadataStrategy metadataStrategy) {
- Validate.notNull(xml, "the xml message parameter cannot be null");
- Validate.notNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
+ Objects.requireNonNull(xml, "the xml message parameter cannot be null");
+ Objects.requireNonNull(metadataStrategy, "the strategy for metadata extraction cannot be null");
setMessage(xml);
setFileFormat(FileFormat.MX);
_updateFromMessage(id, metadataStrategy);
@@ -499,7 +499,7 @@ public String getCategory() {
* @since 9.1.6
*/
public void updateMetadata(MessageMetadataStrategy strategy) {
- Validate.notNull(strategy, "the strategy for metadata extraction cannot be null");
+ Objects.requireNonNull(strategy, "the strategy for metadata extraction cannot be null");
applyStrategy(getMessage(), strategy);
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AbstractMX.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AbstractMX.java
index 4178a4d7d..eb20e9023 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AbstractMX.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AbstractMX.java
@@ -29,7 +29,6 @@
import com.prowidesoftware.swift.model.mx.dic.BusinessApplicationHeaderV01;
import com.prowidesoftware.swift.utils.Lib;
import org.apache.commons.lang3.StringUtils;
-import org.apache.commons.lang3.Validate;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
@@ -47,6 +46,7 @@
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
+import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -99,70 +99,100 @@ protected AbstractMX(final AppHdr appHdr) {
}
/**
- * @deprecated use {@link #message(String, AbstractMX, Class[], String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link MxWriteImpl#write(String, AbstractMX, Class[], MxWriteParams)} instead.
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
protected static String message(final String namespace, final AbstractMX obj, @SuppressWarnings("rawtypes") final Class[] classes, final String prefix, boolean includeXMLDeclaration) {
- return message(namespace, obj, classes, prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return MxWriteImpl.write(namespace, obj, classes, params);
}
/**
- * @since 9.1.7
+ * @deprecated use {@link MxWriteImpl#write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
protected static String message(final String namespace, final AbstractMX obj, @SuppressWarnings("rawtypes") final Class[] classes, final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
- return MxWriteImpl.write(namespace, obj, classes, prefix, includeXMLDeclaration, escapeHandler);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return MxWriteImpl.write(namespace, obj, classes, params);
}
+ /**
+ * @deprecated use any of the available parse methods instead in either this class or the specific subclasses
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@SuppressWarnings({"rawtypes", "unchecked"})
protected static AbstractMX read(final Class extends AbstractMX> targetClass, final String xml, final Class[] classes) {
- return MxReadImpl.parse(targetClass, xml, classes);
+ return MxReadImpl.parse(targetClass, xml, classes, new MxReadParams());
}
/**
* Parses the XML string containing the Document and optional AppHdr into a specific instance of MX message object.
* The message and header types and version is auto detected.
*
- *
The implementation uses {@link #parse(File, MxId)} with message id null for auto detection.
+ *
The unmarshaller uses the default type adapters. For more parse options use {@link #parse(String, MxId, MxReadConfiguration)}.
*
* @param xml the XML content to parse
* @return parsed message or null if string content could not be parsed into an Mx
* @since 9.0.1
*/
public static AbstractMX parse(final String xml) {
- return parse(xml, null);
+ return MxReadImpl.parse(xml, null, new MxReadParams());
}
/**
* Parses the XML string containing the Document and optional AppHdr into a specific instance of MX message object.
- * The header version, if present, is autodetected from its namespace.
+ * The header version, if present, is auto detected from its namespace.
*
*
If the string is empty, does not contain an MX document, the message type cannot be detected or an error
* occur reading and parsing the message content; this method returns null.
*
*
The implementation detects the message type and uses reflection to call the parser in the specific subclass.
*
+ *
The unmarshaller uses the default type adapters. For more parse options use {@link #parse(String, MxId, MxReadConfiguration)}.
+ *
* @param xml string a string containing the Document of an MX message in XML format
* @param id optional parameter to indicate the specific MX type to create; auto detected from namespace if null.
* @return parsed message or null if string content could not be parsed into an Mx
* @since 7.8.4
*/
public static AbstractMX parse(final String xml, MxId id) {
- return MxReadImpl.parse(xml, id);
+ return MxReadImpl.parse(xml, id, new MxReadParams());
}
/**
- * Parses a file content into a specific instance of MX.
+ * Parses the XML string containing the Document and optional AppHdr into a specific instance of MX message object.
+ * The header version, if present, is auto detected from its namespace.
*
- * @param file a file containing a swift MX message
- * @param id optional parameter to indicate the specific MX type to create; autodetected from namespace if null.
- * @return parser message or null if file content could not be parsed
- * @throws IOException if the file cannot be written
- * @see #parse(String, MxId)
- * @since 7.8.4
+ *
If the string is empty, does not contain an MX document, the message type cannot be detected or an error
+ * occur reading and parsing the message content; this method returns null.
+ *
+ *
The implementation detects the message type and uses reflection to call the parser in the specific subclass.
+ *
+ * @param xml string a string containing the Document of an MX message in XML format
+ * @param id optional parameter to indicate the specific MX type to create; auto detected from namespace if null.
+ * @param conf specific options for the unmarshalling or null to use the default parameters
+ * @return parsed message or null if string content could not be parsed into an Mx
+ * @since 9.2.6
*/
+ public static AbstractMX parse(final String xml, MxId id, final MxReadConfiguration conf) {
+ return MxReadImpl.parse(xml, id, new MxReadParams(conf));
+ }
+
+ /**
+ * @deprecated use Lib.readFile(file) and any parse from String method
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
public static AbstractMX parse(final File file, MxId id) throws IOException {
- return parse(Lib.readFile(file), id);
+ return MxReadImpl.parse(Lib.readFile(file), id, new MxReadParams());
}
/**
@@ -193,7 +223,7 @@ public static AbstractMX parse(final Element e) {
serializer.getDomConfig().setParameter("xml-declaration", false);
String xml = serializer.writeToString(e);
if (e.getNamespaceURI() != null) {
- return AbstractMX.parse(xml, new MxId(e.getNamespaceURI()));
+ return AbstractMX.parse(xml, new MxId(e.getNamespaceURI()), new MxReadConfiguration());
}
return null;
}
@@ -292,7 +322,7 @@ public static AbstractMX fromJson(String json) {
*/
@Override
public String message() {
- return message((MxWriteConfiguration) null);
+ return message(new MxWriteConfiguration());
}
/**
@@ -335,18 +365,27 @@ public String message(final String rootElement) {
* @return the XML content or null if errors occur during serialization
*/
public String message(MxWriteConfiguration conf) {
- MxWriteConfiguration usableConf = conf != null? conf : new MxWriteConfiguration();
+ MxWriteConfiguration usableConf = conf != null ? conf : new MxWriteConfiguration();
+ MxWriteParams params = new MxWriteParams(usableConf);
+
+ // handle manually at this method level
+ params.includeXMLDeclaration = false;
+
String root = usableConf.rootElement;
StringBuilder xml = new StringBuilder();
if (usableConf.includeXMLDeclaration) {
xml.append("\n");
}
- final String header = header(usableConf.headerPrefix, false, usableConf.escapeHandler);
+
+ params.prefix = usableConf.headerPrefix;
+ final String header = header(params);
if (header != null) {
xml.append("<").append(root).append(">\n");
xml.append(header).append("\n");
}
- xml.append(document(usableConf.documentPrefix, false, usableConf.escapeHandler)).append("\n");
+
+ params.prefix = usableConf.documentPrefix;
+ xml.append(document(params)).append("\n");
if (header != null) {
xml.append("").append(root).append(">");
}
@@ -357,36 +396,50 @@ public String message(MxWriteConfiguration conf) {
* Get this message AppHdr as an XML string.
*
*
The XML will not include the XML declaration, will bind the namespace to all elements without prefix and will
- * use the default escape handler. For more serialization options use {@link #header(String, boolean, EscapeHandler)}
+ * use the default escape handler and content adapters.
+ *
+ * For more serialization options use {@link #header(MxWriteParams)}
*
* @return the serialized header or null if header is not set or errors occur during serialization
* @since 7.8
*/
public String header() {
- return header(null, false, null);
+ return header(new MxWriteParams());
}
/**
- * @deprecated use {@link #header(String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link #header(MxWriteParams)} instead
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
public String header(final String prefix, boolean includeXMLDeclaration) {
- return header(prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return header(params);
+ }
+
+ /**
+ * @deprecated use {@link #header(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
+ public String header(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return header(params);
}
/**
* Get this message AppHdr as an XML string.
*
- * @param prefix optional prefix for namespace (empty by default)
- * @param includeXMLDeclaration true to include the XML declaration
- * @param escapeHandler a specific escape handler for the header elements content
- * @return header serialized into XML string or null if the header is not set or errors occur during serialization
- * @since 9.1.7
+ * @since 9.2.6
*/
- public String header(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ public String header(final MxWriteParams params) {
if (this.appHdr != null) {
- return this.appHdr.xml(prefix, includeXMLDeclaration, escapeHandler);
+ return this.appHdr.xml(params);
} else {
return null;
}
@@ -396,18 +449,20 @@ public String header(final String prefix, boolean includeXMLDeclaration, EscapeH
* Get this message Document as an XML string.
*
*
The XML will not include the XML declaration, will bind the namespace to all elements using "Doc" as default
- * prefix and will use the default escape handler. For more serialization options use
- * {@link #document(String, boolean, EscapeHandler)}
+ * prefix and will use the default escape handler. For more serialization options use {@link #document(MxWriteParams)}
*
* @return document serialized into XML string or null if errors occur during serialization
* @since 7.8
*/
public String document() {
- return document("Doc", true);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = "Doc";
+ params.includeXMLDeclaration = true;
+ return document(params);
}
/**
- * @deprecated use {@link #document(String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link #document(MxWriteParams)} instead
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
@@ -415,17 +470,28 @@ public String document(final String prefix, boolean includeXMLDeclaration) {
return document(prefix, includeXMLDeclaration, null);
}
+ /**
+ * @deprecated use {@link #document(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
+ public String document(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return document(params);
+ }
+
/**
* Get this message Document as an XML string.
*
- * @param prefix optional prefix for namespace (empty by default)
- * @param includeXMLDeclaration true to include the XML declaration
- * @param escapeHandler a specific escape handler for the document elements content
- * @return document serialized into XML string or null if errors occur during serialization
- * @since 9.1.7
+ * @param params not null marshalling parameters
+ * @since 9.2.6
*/
- public String document(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
- return message(getNamespace(), this, getClasses(), prefix, includeXMLDeclaration, escapeHandler);
+ public String document(MxWriteParams params) {
+ Objects.requireNonNull(params, "marshalling params cannot be null");
+ return MxWriteImpl.write(getNamespace(), this, getClasses(), params);
}
/**
@@ -445,13 +511,12 @@ public Source xmlSource() {
}
/**
- * Writes the message content into a file in XML format.
- *
- * @param file a not null file to write, if it does not exists, it will be created
- * @since 7.7
+ * @deprecated use {@link #message(MxWriteConfiguration)} and handle write from String to file with plain Java API
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
public void write(final File file) throws IOException {
- Validate.notNull(file, "the file to write cannot be null");
+ Objects.requireNonNull(file, "the file to write cannot be null");
boolean created = file.createNewFile();
if (created) {
log.fine("new file created: " + file.getAbsolutePath());
@@ -462,14 +527,12 @@ public void write(final File file) throws IOException {
}
/**
- * Writes the message document content into a file in XML format, encoding content in UTF-8 (headers not included).
- *
- * @param stream a non null stream to write
- * @throws IOException if the stream cannot be written
- * @since 7.7
+ * @deprecated use {@link #message(MxWriteConfiguration)} and handle write from String to stream with plain Java API
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
public void write(final OutputStream stream) throws IOException {
- Validate.notNull(stream, "the stream to write cannot be null");
+ Objects.requireNonNull(stream, "the stream to write cannot be null");
stream.write(message().getBytes(StandardCharsets.UTF_8));
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdr.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdr.java
index 73de87a83..fd556b73b 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdr.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdr.java
@@ -15,9 +15,12 @@
*/
package com.prowidesoftware.swift.model.mx;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
import org.w3c.dom.Element;
import javax.xml.datatype.XMLGregorianCalendar;
+import java.util.Objects;
/**
* The business header is an optional part of the payload of an ISO 20022 message, and contains general information
@@ -112,34 +115,40 @@ public interface AppHdr {
/**
* Get this header as an XML string.
- *
The implementation uses {@link #xml(String, boolean)} with no prefix and no XML declaration.
+ *
The implementation uses {@link #xml(MxWriteParams)} with no prefix and no XML declaration.
*
* @return header serialized into XML string or null in case of unexpected error
*/
default String xml() {
- return xml(null, false);
+ return xml(new MxWriteParams());
}
/**
- * Get this header as an XML string.
- *
- * @param prefix optional prefix for namespace (empty by default)
- * @param includeXMLDeclaration true to include the XML declaration (false by default)
- * @return header serialized into XML string or null in case of unexpected error
+ * @deprecated use {@link #xml(MxWriteParams)} instead
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
String xml(final String prefix, boolean includeXMLDeclaration);
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
+ default String xml(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ return xml(prefix, includeXMLDeclaration);
+ }
+
/**
* Get this header as an XML string.
*
- * @param prefix optional prefix for namespace (empty by default)
- * @param includeXMLDeclaration true to include the XML declaration (false by default)
- * @param escapeHandler a specific escape handler for the header elements content
+ * @param params not null marshalling parameters
* @return header serialized into XML string or null in case of unexpected error
- * @since 9.1.7
+ * @since 9.2.6
*/
- default String xml(final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
- return xml(prefix, includeXMLDeclaration);
+ default String xml(MxWriteParams params) {
+ Objects.requireNonNull(params, "The marshalling params cannot be null");
+ return xml(params.prefix, params.includeXMLDeclaration);
}
/**
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdrParser.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdrParser.java
index 6d73c7640..1beea3a14 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdrParser.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/AppHdrParser.java
@@ -22,6 +22,7 @@
import org.xml.sax.SAXException;
import javax.xml.transform.sax.SAXSource;
+import java.util.Objects;
import java.util.Optional;
/**
@@ -33,10 +34,28 @@ public class AppHdrParser {
* Detects the header version by reading the namespace in the AppHdr element and parses the header content to
* a specific header model: {@link LegacyAppHdr}, {@link BusinessAppHdrV01} or {@link BusinessAppHdrV02}
*
- * @param xml and XML to parse, only the AppHdr element is parse, the rest of the XML content is silently ignored
+ * Default adapters are applied, for more options use {@link #parse(String, MxReadParams)}
+ *
+ * @param xml a not null XML to parse, only the AppHdr element is parse, the rest of the XML content is silently ignored
* @return parsed header
*/
public static Optional parse(final String xml) {
+ Objects.requireNonNull(xml, "The xml to parse cannot be null");
+ return parse(xml, new MxReadParams());
+ }
+
+ /**
+ * Detects the header version by reading the namespace in the AppHdr element and parses the header content to
+ * a specific header model: {@link LegacyAppHdr}, {@link BusinessAppHdrV01} or {@link BusinessAppHdrV02}
+ *
+ * @param xml an not null XML to parse, only the AppHdr element is parse, the rest of the XML content is silently ignored
+ * @param params not null unmarshalling parameters
+ * @return parsed header
+ * @since 9.2.6
+ */
+ public static Optional parse(final String xml, MxReadParams params) {
+ Objects.requireNonNull(xml, "The xml to parse cannot be null");
+ Objects.requireNonNull(params, "The unmarshalling params cannot be null");
try {
Optional namespace = NamespaceReader.findAppHdrNamespace(xml);
@@ -44,7 +63,7 @@ public static Optional parse(final String xml) {
boolean headerIsPresent = namespace.isPresent() || NamespaceReader.elementExists(xml, AppHdr.HEADER_LOCALNAME);
if (headerIsPresent) {
- AppHdr parsedHeader = parseHeaderFromSAXSource(xml, namespace.orElse(null));
+ AppHdr parsedHeader = parseHeaderFromSAXSource(xml, namespace.orElse(null), params);
return Optional.ofNullable(parsedHeader);
}
@@ -55,21 +74,21 @@ public static Optional parse(final String xml) {
return Optional.empty();
}
- private static AppHdr parseHeaderFromSAXSource(final String xml, final String namespace) throws SAXException {
+ private static AppHdr parseHeaderFromSAXSource(final String xml, final String namespace, final MxReadParams params) {
SAXSource source = MxParseUtils.createFilteredSAXSource(xml, AppHdr.HEADER_LOCALNAME);
if (StringUtils.equals(LegacyAppHdr.NAMESPACE, namespace)) {
// parse legacy AH
- return (LegacyAppHdr) MxParseUtils.parseSAXSource(source, LegacyAppHdr.class, LegacyAppHdr._classes);
+ return (LegacyAppHdr) MxParseUtils.parseSAXSource(source, LegacyAppHdr.class, LegacyAppHdr._classes, params);
} else if (StringUtils.equals(BusinessAppHdrV02.NAMESPACE, namespace)) {
// parse BAH version 2
- return (BusinessAppHdrV02) MxParseUtils.parseSAXSource(source, BusinessAppHdrV02.class, BusinessAppHdrV02._classes);
+ return (BusinessAppHdrV02) MxParseUtils.parseSAXSource(source, BusinessAppHdrV02.class, BusinessAppHdrV02._classes, params);
} else {
// by default try to parse to BAH version 1
- return (BusinessAppHdrV01) MxParseUtils.parseSAXSource(source, BusinessAppHdrV01.class, BusinessAppHdrV01._classes);
+ return (BusinessAppHdrV01) MxParseUtils.parseSAXSource(source, BusinessAppHdrV01.class, BusinessAppHdrV01._classes, params);
}
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV01.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV01.java
index e20b1fe39..c800e768d 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV01.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV01.java
@@ -16,6 +16,8 @@
package com.prowidesoftware.swift.model.mx;
import com.prowidesoftware.ProwideException;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
import com.prowidesoftware.swift.model.mx.dic.BusinessApplicationHeaderV01Impl;
import com.prowidesoftware.swift.model.mx.dic.Party9Choice;
import org.apache.commons.lang3.StringUtils;
@@ -35,6 +37,7 @@
import javax.xml.transform.dom.DOMResult;
import java.io.StringWriter;
import java.util.Arrays;
+import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -59,12 +62,28 @@ public class BusinessAppHdrV01 extends BusinessApplicationHeaderV01Impl implemen
/**
* Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
*
+ * Default adapters are applied, for more options use {@link #parse(String, MxReadParams)}
+ *
* @param xml the XML content, can contain wrapper elements that will be ignored
* @return parsed element or null if cannot be parsed
* @throws ProwideException if severe errors occur during parse
*/
public static BusinessAppHdrV01 parse(final String xml) {
- return (BusinessAppHdrV01) MxParseUtils.parse(BusinessAppHdrV01.class, xml, _classes, HEADER_LOCALNAME);
+ return parse(xml, new MxReadParams());
+ }
+
+ /**
+ * Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
+ *
+ * @param xml the XML content, can contain wrapper elements that will be ignored
+ * @param params not null unmarshalling parameters
+ * @return parsed element or null if cannot be parsed
+ * @throws ProwideException if severe errors occur during parse
+ * @since 9.2.6
+ */
+ public static BusinessAppHdrV01 parse(final String xml, final MxReadParams params) {
+ Objects.requireNonNull(params, "The unmarshalling params cannot be null");
+ return (BusinessAppHdrV01) MxParseUtils.parse(BusinessAppHdrV01.class, xml, _classes, HEADER_LOCALNAME, params);
}
/**
@@ -184,20 +203,42 @@ public void setCreationDate(boolean overwrite) {
}
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(final String prefix, boolean includeXMLDeclaration) {
- return xml(prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return xml(params);
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return xml(params);
+ }
+
+ @Override
+ public String xml(MxWriteParams params) {
try {
JAXBContext context = JAXBContext.newInstance(BusinessApplicationHeaderV01Impl.class);
- final Marshaller marshaller = context.createMarshaller();
+ final Marshaller marshaller = MxWriteUtils.createMarshaller(context, params);
final StringWriter sw = new StringWriter();
JAXBElement element = new JAXBElement(new QName(NAMESPACE, AppHdr.HEADER_LOCALNAME), BusinessApplicationHeaderV01Impl.class, null, this);
- XmlEventWriter eventWriter = new XmlEventWriter(sw, prefix, includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, escapeHandler);
+ XmlEventWriter eventWriter = new XmlEventWriter(sw, params.prefix, params.includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, params.escapeHandler);
marshaller.marshal(element, eventWriter);
return sw.getBuffer().toString();
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV02.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV02.java
index ca77a39ca..07c974eb6 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV02.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/BusinessAppHdrV02.java
@@ -16,6 +16,8 @@
package com.prowidesoftware.swift.model.mx;
import com.prowidesoftware.ProwideException;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
import com.prowidesoftware.swift.model.mx.dic.BusinessApplicationHeaderV02Impl;
import com.prowidesoftware.swift.model.mx.dic.Party44Choice;
import org.apache.commons.lang3.StringUtils;
@@ -35,6 +37,7 @@
import javax.xml.transform.dom.DOMResult;
import java.io.StringWriter;
import java.util.Arrays;
+import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -59,12 +62,28 @@ public class BusinessAppHdrV02 extends BusinessApplicationHeaderV02Impl implemen
/**
* Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
*
+ * Default adapters are applied, for more options use {@link #parse(String, MxReadParams)}
+ *
* @param xml the XML content, can contain wrapper elements that will be ignored
* @return parsed element or null if cannot be parsed
* @throws ProwideException if severe errors occur during parse
*/
public static BusinessAppHdrV02 parse(final String xml) {
- return (BusinessAppHdrV02) MxParseUtils.parse(BusinessAppHdrV02.class, xml, _classes, HEADER_LOCALNAME);
+ return parse(xml, new MxReadParams());
+ }
+
+ /**
+ * Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
+ *
+ * @param xml the XML content, can contain wrapper elements that will be ignored
+ * @param params not null unmarshalling parameters
+ * @return parsed element or null if cannot be parsed
+ * @throws ProwideException if severe errors occur during parse
+ * @since 9.2.6
+ */
+ public static BusinessAppHdrV02 parse(final String xml, final MxReadParams params) {
+ Objects.requireNonNull(params, "The unmarshalling params cannot be null");
+ return (BusinessAppHdrV02) MxParseUtils.parse(BusinessAppHdrV02.class, xml, _classes, HEADER_LOCALNAME, params);
}
/**
@@ -184,20 +203,42 @@ public void setCreationDate(boolean overwrite) {
}
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(String prefix, boolean includeXMLDeclaration) {
- return xml(prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return xml(params);
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return xml(params);
+ }
+
+ @Override
+ public String xml(MxWriteParams params) {
try {
JAXBContext context = JAXBContext.newInstance(BusinessApplicationHeaderV02Impl.class);
- final Marshaller marshaller = context.createMarshaller();
+ final Marshaller marshaller = MxWriteUtils.createMarshaller(context, params);
final StringWriter sw = new StringWriter();
JAXBElement element = new JAXBElement(new QName(NAMESPACE, AppHdr.HEADER_LOCALNAME), BusinessApplicationHeaderV02Impl.class, null, this);
- XmlEventWriter eventWriter = new XmlEventWriter(sw, prefix, includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, escapeHandler);
+ XmlEventWriter eventWriter = new XmlEventWriter(sw, params.prefix, params.includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, params.escapeHandler);
marshaller.marshal(element, eventWriter);
return sw.getBuffer().toString();
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/LegacyAppHdr.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/LegacyAppHdr.java
index 5e478249b..d6e932d61 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/LegacyAppHdr.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/LegacyAppHdr.java
@@ -16,6 +16,8 @@
package com.prowidesoftware.swift.model.mx;
import com.prowidesoftware.ProwideException;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
import com.prowidesoftware.swift.model.mx.dic.ApplicationHeaderImpl;
import org.apache.commons.lang3.StringUtils;
import org.w3c.dom.Document;
@@ -34,6 +36,7 @@
import javax.xml.transform.dom.DOMResult;
import java.io.StringWriter;
import java.util.Arrays;
+import java.util.Objects;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -58,12 +61,30 @@ public class LegacyAppHdr extends ApplicationHeaderImpl implements AppHdr {
/**
* Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
*
+ * Default adapters are applied, for more options use {@link #parse(String, MxReadParams)}
+ *
* @param xml the XML content, can contain wrapper elements that will be ignored
* @return parsed element or null if cannot be parsed
* @throws ProwideException if severe errors occur during parse
*/
public static LegacyAppHdr parse(final String xml) {
- return (LegacyAppHdr) MxParseUtils.parse(LegacyAppHdr.class, xml, _classes, HEADER_LOCALNAME);
+ return parse(xml, new MxReadParams());
+ }
+
+ /**
+ * Parse the header from an XML with optional wrapper and sibling elements that will be ignored.
+ *
+ * Default adapters are applied, for more options use {@link #parse(String, MxReadParams)}
+ *
+ * @param xml the XML content, can contain wrapper elements that will be ignored
+ * @param params not null unmarshalling parameters
+ * @return parsed element or null if cannot be parsed
+ * @throws ProwideException if severe errors occur during parse
+ * @since 9.2.6
+ */
+ public static LegacyAppHdr parse(final String xml, final MxReadParams params) {
+ Objects.requireNonNull(params, "The unmarshalling params cannot be null");
+ return (LegacyAppHdr) MxParseUtils.parse(LegacyAppHdr.class, xml, _classes, HEADER_LOCALNAME, params);
}
/**
@@ -174,20 +195,42 @@ public void setCreationDate(boolean overwrite) {
}
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(final String prefix, boolean includeXMLDeclaration) {
- return xml(prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return xml(params);
}
+ /**
+ * @deprecated use {@link #xml(MxWriteParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
@Override
public String xml(String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return xml(params);
+ }
+
+ @Override
+ public String xml(MxWriteParams params) {
try {
JAXBContext context = JAXBContext.newInstance(ApplicationHeaderImpl.class);
- final Marshaller marshaller = context.createMarshaller();
+ final Marshaller marshaller = MxWriteUtils.createMarshaller(context, params);
final StringWriter sw = new StringWriter();
JAXBElement element = new JAXBElement(new QName(NAMESPACE, AppHdr.HEADER_LOCALNAME), ApplicationHeaderImpl.class, null, this);
- XmlEventWriter eventWriter = new XmlEventWriter(sw, prefix, includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, escapeHandler);
+ XmlEventWriter eventWriter = new XmlEventWriter(sw, params.prefix, params.includeXMLDeclaration, AppHdr.HEADER_LOCALNAME, params.escapeHandler);
marshaller.marshal(element, eventWriter);
return sw.getBuffer().toString();
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxParseUtils.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxParseUtils.java
index e31b9a9ab..4b4d8b48b 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxParseUtils.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxParseUtils.java
@@ -16,19 +16,22 @@
package com.prowidesoftware.swift.model.mx;
import com.prowidesoftware.ProwideException;
+import com.prowidesoftware.deprecation.ProwideDeprecated;
+import com.prowidesoftware.deprecation.TargetYear;
import com.prowidesoftware.swift.model.MxId;
import com.prowidesoftware.swift.utils.SafeXmlUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.Validate;
import org.xml.sax.InputSource;
-import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.XMLReader;
import javax.xml.bind.*;
+import javax.xml.bind.annotation.adapters.XmlAdapter;
import javax.xml.stream.XMLStreamException;
import javax.xml.transform.sax.SAXSource;
import java.io.StringReader;
+import java.util.Objects;
import java.util.Optional;
import java.util.concurrent.ExecutionException;
import java.util.logging.Logger;
@@ -59,6 +62,15 @@ static SAXSource createFilteredSAXSource(final String xml, final String localNam
return new SAXSource(documentFilter, documentInputSource);
}
+ /**
+ * @deprecated use {@link #parseSAXSource(SAXSource, Class, Class[], MxReadParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase3 = TargetYear.SRU2023)
+ static Object parseSAXSource(final SAXSource source, final Class targetClass, final Class>[] classes) {
+ return parseSAXSource(source, targetClass, classes, new MxReadParams());
+ }
+
/**
* Parse an object from an event reader.
*
@@ -68,18 +80,27 @@ static SAXSource createFilteredSAXSource(final String xml, final String localNam
* @param source the SaxSource to parse
* @param targetClass the class of the object being parsed
* @param classes the object classes to build a jaxb context
+ * @param params not null unmarshalling parameters
* @return parsed element or null if cannot be parsed
* @throws ProwideException if severe errors occur during parse
- * @since 9.1.2
+ * @since 9.2.6
*/
- static Object parseSAXSource(final SAXSource source, final Class targetClass, final Class>[] classes) {
- Validate.notNull(targetClass, "target class to parse must not be null");
- Validate.notNull(source, "SAXSource to parse must not be null");
- Validate.notNull(classes, "object model classes aray must not be null");
+ static Object parseSAXSource(final SAXSource source, final Class targetClass, final Class>[] classes, final MxReadParams params) {
+ Objects.requireNonNull(targetClass, "target class to parse must not be null");
+ Objects.requireNonNull(source, "SAXSource to parse must not be null");
+ Objects.requireNonNull(classes, "object model classes array must not be null");
+ Objects.requireNonNull(params, "unmarshalling params cannot be null");
try {
JAXBContext context = JaxbContextLoader.INSTANCE.get(targetClass, classes);
final Unmarshaller unmarshaller = context.createUnmarshaller();
+
+ if (params.adapters != null) {
+ for (XmlAdapter adapter : params.adapters.asList()) {
+ unmarshaller.setAdapter(adapter);
+ }
+ }
+
JAXBElement element = unmarshaller.unmarshal(source, targetClass);
if (element != null) {
return element.getValue();
@@ -108,6 +129,15 @@ static void handleParseException(Exception e) {
e.printStackTrace();
}
+ /**
+ * @deprecated use {@link #parse(Class, String, Class[], String, MxReadParams)} instead
+ */
+ @Deprecated
+ @ProwideDeprecated(phase3 = TargetYear.SRU2023)
+ static Object parse(final Class targetClass, final String xml, final Class>[] classes, final String localName) {
+ return parse(targetClass, xml, classes, localName, new MxReadParams());
+ }
+
/**
* Parse an object from XML with optional wrapper and sibling elements that will be ignored.
*
@@ -115,19 +145,22 @@ static void handleParseException(Exception e) {
* @param xml the XML content, can contain wrapper elements that will be ignored
* @param classes the object classes to build a jaxb context
* @param localName the specific element to parse within the parameter XML
+ * @param params not null unmarshalling parameters
* @return parsed element or null if cannot be parsed
* @throws ProwideException if severe errors occur during parse
+ * @since 9.2.6
*/
- static Object parse(final Class targetClass, final String xml, final Class>[] classes, final String localName) {
- Validate.notNull(targetClass, "target class to parse must not be null");
- Validate.notNull(xml, "XML to parse must not be null");
+ static Object parse(final Class targetClass, final String xml, final Class>[] classes, final String localName, final MxReadParams params) {
+ Objects.requireNonNull(targetClass, "target class to parse must not be null");
+ Objects.requireNonNull(xml, "XML to parse must not be null");
Validate.notBlank(xml, "XML to parse must not be a blank string");
- Validate.notNull(classes, "object model classes aray must not be null");
+ Objects.requireNonNull(classes, "object model classes aray must not be null");
Validate.notBlank(localName, "The XML element to parse must not be null nor a blank string");
+ Objects.requireNonNull(params, "unmarshalling params cannot be null");
try {
SAXSource saxSource = createFilteredSAXSource(xml, localName);
- return parseSAXSource(saxSource, targetClass, classes);
+ return parseSAXSource(saxSource, targetClass, classes, params);
} catch (final Exception e) {
handleParseException(e);
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadConfiguration.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadConfiguration.java
new file mode 100644
index 000000000..fee6bc32a
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadConfiguration.java
@@ -0,0 +1,48 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx;
+
+import com.prowidesoftware.swift.model.mx.adapters.TypeAdaptersConfiguration;
+
+/**
+ * Options to customize the behaviour of the MX parser (XML into model) in the {@link AbstractMX} and its specific
+ * types subclasses.
+ *
+ * @since 9.2.6
+ */
+public class MxReadConfiguration {
+
+ /**
+ * Type adapters for the marshaller
+ * @since 9.2.6
+ */
+ public TypeAdaptersConfiguration adapters;
+
+ /**
+ * Creates a configuration with the default adapters
+ */
+ public MxReadConfiguration() {
+ this.adapters = new TypeAdaptersConfiguration();
+ }
+
+ /**
+ * Propagates the adapters from write to read configuration
+ */
+ public MxReadConfiguration(MxWriteConfiguration writeConf) {
+ this.adapters = writeConf.adapters;
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadImpl.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadImpl.java
index fccb63f5b..58ac7a14e 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadImpl.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadImpl.java
@@ -20,6 +20,7 @@
import org.apache.commons.lang3.Validate;
import javax.xml.transform.sax.SAXSource;
+import java.util.Objects;
import java.util.Optional;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -59,17 +60,27 @@ public class MxReadImpl implements MxRead {
* @since 8.0.4
*/
public static AbstractMX parse(final Class extends AbstractMX> targetClass, final String xml, final Class>[] classes) {
- Validate.notNull(targetClass, "target class to parse must not be null");
- Validate.notNull(xml, "XML to parse must not be null");
+ return parse(targetClass, xml, classes, new MxReadParams());
+ }
+
+ /**
+ * @since 9.2.6
+ */
+ public static AbstractMX parse(final Class extends AbstractMX> targetClass, final String xml, final Class>[] classes, final MxReadParams params) {
+ Objects.requireNonNull(targetClass, "target class to parse must not be null");
+ Objects.requireNonNull(xml, "XML to parse must not be null");
Validate.notBlank(xml, "XML to parse must not be a blank string");
- Validate.notNull(classes, "object model classes array must not be null");
+ Objects.requireNonNull(classes, "object model classes array must not be null");
+ Objects.requireNonNull(params, "The unmarshalling params cannot be null");
try {
SAXSource documentSource = MxParseUtils.createFilteredSAXSource(xml, AbstractMX.DOCUMENT_LOCALNAME);
- Optional mx = parseDocumentFromSAXSource(documentSource, targetClass, classes);
+ final AbstractMX parsedDocument = (AbstractMX) MxParseUtils.parseSAXSource(documentSource, targetClass, classes, params);
- Optional appHdr = AppHdrParser.parse(xml);
+ Optional mx = Optional.ofNullable(parsedDocument);
+
+ Optional appHdr = AppHdrParser.parse(xml, params);
if (mx.isPresent() && appHdr.isPresent()) {
mx.get().setAppHdr(appHdr.get());
@@ -83,14 +94,6 @@ public static AbstractMX parse(final Class extends AbstractMX> targetClass, fi
}
}
- /**
- * @since 9.1.2
- */
- private static Optional parseDocumentFromSAXSource(SAXSource source, Class extends AbstractMX> targetClass, Class>[] classes) {
- final AbstractMX mx = (AbstractMX) MxParseUtils.parseSAXSource(source, targetClass, classes);
- return Optional.ofNullable(mx);
- }
-
/**
* Static parse implementation of {@link MxRead#read(String, MxId)}
*
@@ -100,8 +103,16 @@ private static Optional parseDocumentFromSAXSource(SAXSource source,
* @since 9.0
*/
public static AbstractMX parse(final String xml, MxId id) {
- Validate.notNull(xml, "XML to parse must not be null");
+ return parse(xml, id, new MxReadParams());
+ }
+
+ /**
+ * @since 9.2.6
+ */
+ static AbstractMX parse(final String xml, final MxId id, final MxReadParams params) {
+ Objects.requireNonNull(xml, "XML to parse must not be null");
Validate.notBlank(xml, "XML to parse must not be a blank string");
+ Objects.requireNonNull(params, "unmarshalling params cannot be null");
MxId resolvedId = id;
@@ -122,7 +133,7 @@ public static AbstractMX parse(final String xml, MxId id) {
fqn = "com.prowidesoftware.swift.model.mx" + subPackage + ".Mx" + resolvedId.camelized();
Class extends AbstractMX> clazz = (Class extends AbstractMX>) Class.forName(fqn);
java.lang.reflect.Field _classes = clazz.getDeclaredField("_classes");
- mx = parse(clazz, xml, (Class[]) _classes.get(null));
+ mx = parse(clazz, xml, (Class[]) _classes.get(null), params);
} catch (ClassNotFoundException e) {
log.log(Level.SEVERE, "MX model implementation not found for " + fqn, e);
} catch (Exception e) {
@@ -133,7 +144,7 @@ public static AbstractMX parse(final String xml, MxId id) {
@Override
public AbstractMX read(final Class extends AbstractMX> targetClass, final String xml, final Class>[] classes) {
- return parse(targetClass, xml, classes);
+ return parse(targetClass, xml, classes, new MxReadParams());
}
/**
@@ -154,7 +165,7 @@ public AbstractMX read(final Class extends AbstractMX> targetClass, final Stri
*/
@Override
public AbstractMX read(final String xml, MxId id) {
- return parse(xml, id);
+ return parse(xml, id, new MxReadParams());
}
}
\ No newline at end of file
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadParams.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadParams.java
new file mode 100644
index 000000000..363dbfa4a
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxReadParams.java
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx;
+
+import com.prowidesoftware.swift.model.mx.adapters.TypeAdaptersConfiguration;
+
+/**
+ * Simple DTO to encapsulate parameters in the different XML-to-model parser implementation methods in the API
+ *
+ * @since 9.2.6
+ */
+public class MxReadParams {
+
+ /**
+ * Specific adapters for date time, date, time
+ */
+ public TypeAdaptersConfiguration adapters;
+
+ public MxReadParams() {
+ this.adapters = new TypeAdaptersConfiguration();
+ }
+
+ public MxReadParams(MxReadConfiguration conf) {
+ this();
+ if (conf != null) {
+ this.adapters = conf.adapters;
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWrite.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWrite.java
index 54d152e63..7402f5c09 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWrite.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWrite.java
@@ -19,31 +19,24 @@
import com.prowidesoftware.deprecation.TargetYear;
/**
- * Interface to plug in code that serializes MX message objects to XML string
- *
- * @since 7.6
+ * @deprecated use the {@link MxWriteImpl} directly
*/
+@Deprecated
+@ProwideDeprecated(phase2 = TargetYear.SRU2023)
public interface MxWrite {
/**
- * @deprecated use {@link #message(String, AbstractMX, Class[], String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link MxWriteImpl#write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
String message(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration);
/**
- * Converts obj into a xml string
- *
- * @param namespace the namespace for the target message
- * @param obj the object containing the message to be serialized
- * @param classes array of all classes used or referenced by message class
- * @param prefix optional prefix for ns ("Doc" by default)
- * @param includeXMLDeclaration true to include the xml declaration (true by default)
- * @param escapeHandler specific escape handler to use when serializing the elements content or null to use the default
- * @return the message content serialized to XML
- * @since 9.1.7
+ * @deprecated use {@link MxWriteImpl#write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
default String message(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
return message(namespace, obj, classes, prefix, includeXMLDeclaration, null);
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteConfiguration.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteConfiguration.java
index b663eb10d..8c8fb3fe9 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteConfiguration.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteConfiguration.java
@@ -15,8 +15,11 @@
*/
package com.prowidesoftware.swift.model.mx;
+import com.prowidesoftware.swift.model.mx.adapters.TypeAdaptersConfiguration;
+
/**
- * Options POJO to customize the behaviour of the MX writer (model into XML serialization)
+ * Options to customize the behaviour of the MX writer (model into XML serialization) in the {@link AbstractMX}
+ * and its specific types subclasses.
*
* @since 9.1.7
*/
@@ -29,30 +32,58 @@ public class MxWriteConfiguration {
* the Document element. If no root elemewnt name is provided the value in {@link AbstractMX#DEFAULT_ROOT_ELEMENT}
* is used as default
*/
- public String rootElement = AbstractMX.DEFAULT_ROOT_ELEMENT;
+ public String rootElement;
/**
* Determines if the XML will include the XML declaration as first line. It is true by default. You can switch this
* off if the generated XML will then be used a a fragment of another XML wrapper.
*/
- public boolean includeXMLDeclaration = true;
+ public boolean includeXMLDeclaration;
/**
* Enables switching between different implementations for the element and attributes value escaping. Some
* implementations are available in the library and your own custom class can also be used. This is useful if you
* handle XML messages with specific charset and you want to control what is escaped and what is propagated as is.
*/
- public EscapeHandler escapeHandler = new DefaultEscapeHandler();
+ public EscapeHandler escapeHandler;
/**
* The prefix for the header namespace. Set it to null if you don't want to have any prefix in header elements.
* It is "h" by default.
*/
- public String headerPrefix = "h";
+ public String headerPrefix;
/**
* The prefix for the document namespace. Set it to null if you don't want to have any prefix in document elements.
* It is "Doc" by default.
*/
- public String documentPrefix = "Doc";
-}
+ public String documentPrefix;
+
+ /**
+ * Type adapters for the marshaller
+ * @since 9.2.6
+ */
+ public TypeAdaptersConfiguration adapters;
+
+ /**
+ * Creates a configuration with the default options and adapters
+ */
+ public MxWriteConfiguration() {
+ this.rootElement = AbstractMX.DEFAULT_ROOT_ELEMENT;
+ this.includeXMLDeclaration = true;
+ this.escapeHandler = new DefaultEscapeHandler();
+ this.headerPrefix = "h";
+ this.documentPrefix = "Doc";
+ this.adapters = new TypeAdaptersConfiguration();
+ }
+
+ /**
+ * Creates a configuration with the default options and propagates the adapters from read to write configuration
+ * @since 9.2.6
+ */
+ public MxWriteConfiguration(MxReadConfiguration readConf) {
+ this();
+ this.adapters = readConf.adapters;
+ }
+
+}
\ No newline at end of file
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteImpl.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteImpl.java
index d1e5964f6..b53219ade 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteImpl.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteImpl.java
@@ -28,6 +28,7 @@
import java.io.StringWriter;
import java.util.HashMap;
import java.util.Map;
+import java.util.Objects;
import java.util.concurrent.ExecutionException;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -42,23 +43,40 @@ public class MxWriteImpl implements MxWrite {
private static final transient Logger log = Logger.getLogger(MxWriteImpl.class.getName());
/**
- * @deprecated use {@link #message(String, AbstractMX, Class[], String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link #write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
public static String write(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration) {
- return write(namespace, obj, classes, prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return write(namespace, obj, classes, params);
}
/**
- * Static serialization implementation of {@link MxWrite#message(String, AbstractMX, Class[], String, boolean, EscapeHandler)}
- *
- * @since 9.1.7
+ * @deprecated use {@link #write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2022)
public static String write(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
- Validate.notNull(namespace, "namespace can not be null");
- Validate.notNull(obj, "MxSwiftMessage can not be null");
- Validate.notNull(classes, "Class[] can not be null");
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return write(namespace, obj, classes, params);
+ }
+
+ /**
+ * Main implementation of model to XML serialization
+ *
+ * @since 9.2.6
+ */
+ public static String write(String namespace, AbstractMX obj, Class[] classes, MxWriteParams params) {
+ Objects.requireNonNull(namespace, "namespace can not be null");
+ Objects.requireNonNull(obj, "MxSwiftMessage can not be null");
+ Objects.requireNonNull(classes, "Class[] can not be null");
+ Objects.requireNonNull(params, "marshalling params cannot be null");
try {
JAXBContext context = JaxbContextLoader.INSTANCE.get(obj);
@@ -66,10 +84,10 @@ public static String write(String namespace, AbstractMX obj, Class[] classes, fi
// Sin el ns en el qname, para ver si toma el default
@SuppressWarnings({"unchecked"}) final JAXBElement extends MxSwiftMessage> element = new JAXBElement(new QName("Document"), obj.getClass(), null, obj);
- final Marshaller marshaller = context.createMarshaller();
+ final Marshaller marshaller = MxWriteUtils.createMarshaller(context, params);
final StringWriter sw = new StringWriter();
- XmlEventWriter writer = new XmlEventWriter(sw, prefix, includeXMLDeclaration, "Document", escapeHandler);
+ XmlEventWriter writer = new XmlEventWriter(sw, params.prefix, params.includeXMLDeclaration, "Document", params.escapeHandler);
Map preferredPrefixes = new HashMap<>();
for (XsysNamespaces xsys : XsysNamespaces.values()) {
@@ -91,23 +109,30 @@ public static String write(String namespace, AbstractMX obj, Class[] classes, fi
}
/**
- * @deprecated use {@link #message(String, AbstractMX, Class[], String, boolean, EscapeHandler)} instead
+ * @deprecated use {@link #write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
@Deprecated
@ProwideDeprecated(phase2 = TargetYear.SRU2022)
@Override
public String message(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration) {
- return write(namespace, obj, classes, prefix, includeXMLDeclaration, null);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ return write(namespace, obj, classes, params);
}
/**
- * Implements serialization to XML
- *
- * @see MxWrite#message(String, AbstractMX, Class[], String, boolean, EscapeHandler)
+ * @deprecated use {@link #write(String, AbstractMX, Class[], MxWriteParams)} instead
*/
@Override
+ @Deprecated
+ @ProwideDeprecated(phase2 = TargetYear.SRU2023)
public String message(String namespace, AbstractMX obj, Class[] classes, final String prefix, boolean includeXMLDeclaration, EscapeHandler escapeHandler) {
- return write(namespace, obj, classes, prefix, includeXMLDeclaration, escapeHandler);
+ MxWriteParams params = new MxWriteParams();
+ params.prefix = prefix;
+ params.includeXMLDeclaration = includeXMLDeclaration;
+ params.escapeHandler = escapeHandler;
+ return write(namespace, obj, classes, params);
}
}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteParams.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteParams.java
new file mode 100644
index 000000000..27f17fb29
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteParams.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx;
+
+import com.prowidesoftware.swift.model.mx.adapters.TypeAdaptersConfiguration;
+
+/**
+ * Simple DTO to encapsulate parameters in the different model-to-XML serialization implementation methods in the API
+ *
+ * @since 9.2.6
+ */
+public class MxWriteParams {
+
+ /**
+ * Optional prefix for namespace (empty by default)
+ */
+ public String prefix;
+
+ /**
+ * True to include the XML declaration (false by default)
+ */
+ public boolean includeXMLDeclaration;
+
+ /**
+ * A specific escape handler for the header elements content (none by default)
+ */
+ public EscapeHandler escapeHandler;
+
+ /**
+ * Specific adapters for date time, date, time
+ */
+ public TypeAdaptersConfiguration adapters;
+
+ public MxWriteParams() {
+ this(new MxWriteConfiguration());
+ }
+
+ MxWriteParams(MxWriteConfiguration conf) {
+ this.prefix = null;
+ MxWriteConfiguration notNullConf = conf == null? new MxWriteConfiguration() : conf;
+ // use same defaults as configuration
+ this.includeXMLDeclaration = notNullConf.includeXMLDeclaration;
+ this.escapeHandler = notNullConf.escapeHandler;
+ this.adapters = notNullConf.adapters;
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteUtils.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteUtils.java
new file mode 100644
index 000000000..c447a203c
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/MxWriteUtils.java
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx;
+
+import javax.xml.bind.JAXBContext;
+import javax.xml.bind.JAXBException;
+import javax.xml.bind.Marshaller;
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+
+/**
+ * Reusable code for marshalling methods
+ *
+ * @since 9.2.6
+ */
+class MxWriteUtils {
+
+ static Marshaller createMarshaller(final JAXBContext context, final MxWriteParams params) throws JAXBException {
+ final Marshaller marshaller = context.createMarshaller();
+
+ if (params.adapters != null) {
+ for (XmlAdapter adapter : params.adapters.asList()) {
+ marshaller.setAdapter(adapter);
+ }
+ }
+
+ return marshaller;
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/NamespaceReader.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/NamespaceReader.java
index 6e74d0c4b..58268323d 100644
--- a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/NamespaceReader.java
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/NamespaceReader.java
@@ -24,6 +24,7 @@
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import java.io.StringReader;
+import java.util.Objects;
import java.util.Optional;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -101,9 +102,9 @@ public static boolean elementExists(final String xml, final String localName) {
}
private static Optional findElement(final String xml, final String localName) {
- Validate.notNull(xml, "XML to parse must not be null");
+ Objects.requireNonNull(xml, "XML to parse must not be null");
Validate.notBlank(xml, "XML to parse must not be a blank string");
- Validate.notNull(xml, "localName to find must not be null");
+ Objects.requireNonNull(xml, "localName to find must not be null");
final XMLInputFactory xif = SafeXmlUtils.inputFactory();
try {
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/AdapterUtils.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/AdapterUtils.java
new file mode 100644
index 000000000..0998e60ac
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/AdapterUtils.java
@@ -0,0 +1,67 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
+import java.util.GregorianCalendar;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+/**
+ * Reusable code for adapters implementations
+ */
+class AdapterUtils {
+ private static final transient Logger log = Logger.getLogger(AdapterUtils.class.getName());
+
+ static String format(SimpleDateFormat dateFormat, XMLGregorianCalendar calendar) {
+ GregorianCalendar gregorianCalendar = calendar.toGregorianCalendar();
+ Date date = gregorianCalendar.getTime();
+ dateFormat.setCalendar(gregorianCalendar);
+ return dateFormat.format(date);
+ }
+
+ static XMLGregorianCalendar parse(SimpleDateFormat dateFormat, String value) {
+ if (value == null) {
+ return null;
+ }
+ try {
+ // attempt lexical representation parsing
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar(value);
+ } catch (IllegalArgumentException|DatatypeConfigurationException e) {
+ if (log.isLoggable(Level.FINEST)) {
+ log.finest("Error parsing to XMLGregorianCalendar: " + e.getMessage());
+ }
+ }
+ try {
+ Date date = dateFormat.parse(value);
+ GregorianCalendar calendar = new GregorianCalendar();
+ calendar.setTime(date);
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar(calendar);
+ } catch (ParseException|DatatypeConfigurationException e) {
+ if (log.isLoggable(Level.FINEST)) {
+ log.finest("Error parsing XMLGregorianCalendar with " + dateFormat.toPattern() + ": " + e.getMessage());
+ }
+ }
+ return null;
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/SimpleDateAdapter.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/SimpleDateAdapter.java
new file mode 100644
index 000000000..57751a9b7
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/SimpleDateAdapter.java
@@ -0,0 +1,94 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.text.SimpleDateFormat;
+
+/**
+ * XMLGregorianCalendar adapter for date elements.
+ *
+ * Marshals the date time as YYY-MM-DD which is aligned with ISO 8601.
+ *
+ * Notice the configured adapter in the model is the {@link IsoDateAdapter} wrapper class, but you can pass this
+ * default implementation or your own in the constructor.
+ *
+ * @see TypeAdaptersConfiguration
+ * @since 9.2.6
+ */
+public class SimpleDateAdapter extends XmlAdapter {
+
+ private final SimpleDateFormat dateFormat;
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Creates a date adapter with the default format
+ */
+ public SimpleDateAdapter() {
+ this.dateFormat = new SimpleDateFormat("yyyy-MM-dd");
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a time adapter with a specific given format that will be used for both the marshalling and unmarshalling
+ */
+ public SimpleDateAdapter(SimpleDateFormat dateFormat) {
+ this.dateFormat = dateFormat;
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a date adapter injecting a custom implementation
+ */
+ public SimpleDateAdapter(XmlAdapter customAdapterImpl) {
+ this.dateFormat = null;
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Creates a calendar parsing the value with this adapter format, or the default lexical representation as fallback.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.unmarshal(value);
+ } else {
+ return AdapterUtils.parse(this.dateFormat, value);
+ }
+ }
+
+ /**
+ * Applies the configured format to the calendar.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.marshal(cal);
+ } else {
+ synchronized (dateFormat) {
+ return AdapterUtils.format(this.dateFormat, cal);
+ }
+ }
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/TypeAdaptersConfiguration.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/TypeAdaptersConfiguration.java
new file mode 100644
index 000000000..1de36564c
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/TypeAdaptersConfiguration.java
@@ -0,0 +1,84 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * DTO to encapsulate type adapters parameters for the marshalling and unmarshalling API.
+ *
+ * This class is used to inject your own adapters to the marshaller and unmarshaller via the
+ * {@link com.prowidesoftware.swift.model.mx.MxWriteConfiguration} and
+ * {@link com.prowidesoftware.swift.model.mx.MxReadConfiguration} parameters in the API.
+ *
+ * Notice the configured adapters in the model are the {@link IsoDateTimeAdapter}, {@link IsoDateAdapter} and
+ * {@link IsoTimeAdapter}. These are just wrapper classes configured in the model via @XmlJavaTypeAdapter annotation.
+ * The actual adapter implementation is injected in the constructor, thus you can use any of the default adapters
+ * such as the {@link ZonedDateTimeAdapter} or your own.
+ *
+ * @since 9.2.6
+ */
+public class TypeAdaptersConfiguration {
+ /**
+ * Customized instances or subclasses of this adapter can be injected to change the default serialization of
+ * date time elements.
+ */
+ public IsoDateTimeAdapter dateTimeAdapter;
+
+ /**
+ * Customized instances or subclasses of this adapter can be injected to change the default serialization of
+ * date time elements.
+ */
+ public IsoDateAdapter dateAdapter;
+
+ /**
+ * Customized instances or subclasses of this adapter can be injected to change the default serialization of
+ * date time elements.
+ */
+ public IsoTimeAdapter timeAdapter;
+
+ /**
+ * Initializes the adapters with the default implementations
+ * @see SimpleDateAdapter
+ * @see ZonedDateTimeAdapter
+ * @see ZonedTimeAdapter
+ */
+ public TypeAdaptersConfiguration() {
+ this.dateTimeAdapter = new IsoDateTimeAdapter(new ZonedDateTimeAdapter());
+ this.dateAdapter = new IsoDateAdapter(new SimpleDateAdapter());
+ this.timeAdapter = new IsoTimeAdapter(new ZonedTimeAdapter());
+ }
+
+ /**
+ * @return this configuration non null adapters into a list
+ */
+ public List asList() {
+ List all = new ArrayList<>();
+ if (this.dateTimeAdapter != null) {
+ all.add(this.dateTimeAdapter);
+ }
+ if (this.dateAdapter != null) {
+ all.add(this.dateAdapter);
+ }
+ if (this.timeAdapter != null) {
+ all.add(this.timeAdapter);
+ }
+ return all;
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapter.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapter.java
new file mode 100644
index 000000000..7941bd8ef
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapter.java
@@ -0,0 +1,104 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.text.SimpleDateFormat;
+
+/**
+ * XMLGregorianCalendar adapter for date time elements.
+ *
+ * Marshals the date time as a local time with UTC offset format YYYY-MM-DDThh:mm:ss[.sss]+/-hh:mm which is aligned
+ * with ISO 8601. Dislike the default jaxb implementation, this adapter will always print the offset, and for UTC times
+ * in particular an explicit '+00:00' offset is used instead of the 'Z'. The fractional seconds is printed only when it
+ * is different than zero.
+ *
+ * Notice the configured adapter in the model is the {@link IsoDateTimeAdapter} wrapper class, but you can pass this
+ * default implementation or your own in the constructor.
+ *
+ * @see TypeAdaptersConfiguration
+ * @since 9.2.6
+ */
+public class ZonedDateTimeAdapter extends XmlAdapter {
+
+ private final SimpleDateFormat marshalFormat;
+ private final SimpleDateFormat unmarshalFormat;
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Creates a date time adapter with the default format
+ */
+ public ZonedDateTimeAdapter() {
+ this.marshalFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
+ this.unmarshalFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss[.SSS][XXX]");
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a time adapter with a specific given format that will be used for both the marshalling and unmarshalling
+ */
+ public ZonedDateTimeAdapter(SimpleDateFormat dateFormat) {
+ this.marshalFormat = dateFormat;
+ this.unmarshalFormat = dateFormat;
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a date time adapter injecting a custom implementation
+ */
+ public ZonedDateTimeAdapter(XmlAdapter customAdapterImpl) {
+ this.marshalFormat = null;
+ this.unmarshalFormat = null;
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Creates a calendar parsing the value with this adapter format, or the default lexical representation as fallback.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.unmarshal(value);
+ } else {
+ return AdapterUtils.parse(this.unmarshalFormat, value);
+ }
+ }
+
+ /**
+ * Applies the configured format to the calendar. If the formats ends with an offset, and the calendar is an UTC
+ * date time, we uses an explicit '+00:00' instead of the 'Z' code.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.marshal(cal);
+ } else {
+ String formatted;
+ synchronized (marshalFormat) {
+ formatted = AdapterUtils.format(this.marshalFormat, cal);
+ }
+ return formatted.replace(".000", "").replace("Z", "+00:00");
+ }
+ }
+
+}
diff --git a/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapter.java b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapter.java
new file mode 100644
index 000000000..315eb291c
--- /dev/null
+++ b/iso20022-core/src/main/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapter.java
@@ -0,0 +1,103 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.text.SimpleDateFormat;
+
+/**
+ * XMLGregorianCalendar adapter for time elements.
+ *
+ * Marshals the time as a local time with UTC offset format hh:mm:ss[.sss]+/-hh:mm which is aligned with ISO 8601.
+ * Dislike the default jaxb implementation, this adapter will always print the offset, and for UTC times in particular
+ * an explicit '+00:00' offset is used instead of the 'Z'. The fractional seconds is printed only when it is different
+ * than zero.
+ *
+ * Notice the configured adapter in the model is the {@link IsoTimeAdapter} wrapper class, but you can pass this
+ * default implementation or your own in the constructor.
+ *
+ * @see TypeAdaptersConfiguration
+ * @since 9.2.6
+ */
+public class ZonedTimeAdapter extends XmlAdapter {
+
+ private final SimpleDateFormat marshalFormat;
+ private final SimpleDateFormat unmarshalFormat;
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Creates a time adapter with the default format
+ */
+ public ZonedTimeAdapter() {
+ this.marshalFormat = new SimpleDateFormat("HH:mm:ss.SSSXXX");
+ this.unmarshalFormat = new SimpleDateFormat("HH:mm:ss[.SSS][XXX]");
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a time adapter with a specific given format that will be used for both the marshalling and unmarshalling
+ */
+ public ZonedTimeAdapter(SimpleDateFormat dateFormat) {
+ this.marshalFormat = dateFormat;
+ this.unmarshalFormat = dateFormat;
+ this.customAdapterImpl = null;
+ }
+
+ /**
+ * Creates a time adapter injecting a custom implementation
+ */
+ public ZonedTimeAdapter(XmlAdapter customAdapterImpl) {
+ this.marshalFormat = null;
+ this.unmarshalFormat = null;
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Creates a calendar parsing the value with this adapter format, or the default lexical representation as fallback.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.unmarshal(value);
+ } else {
+ return AdapterUtils.parse(this.unmarshalFormat, value);
+ }
+ }
+
+ /**
+ * Applies the configured format to the calendar.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ if (this.customAdapterImpl != null) {
+ return this.customAdapterImpl.marshal(cal);
+ } else {
+ String formatted;
+ synchronized (marshalFormat) {
+ formatted = AdapterUtils.format(this.marshalFormat, cal);
+ }
+ return formatted.replace(".000", "").replace("Z", "+00:00");
+ }
+ }
+
+}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/MxWriteTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/MxWriteTest.java
index 4cd0c81a2..04b68a1e7 100644
--- a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/MxWriteTest.java
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/MxWriteTest.java
@@ -19,13 +19,10 @@
import org.apache.commons.lang3.StringUtils;
import org.junit.jupiter.api.Test;
-import javax.xml.datatype.DatatypeFactory;
-import javax.xml.datatype.XMLGregorianCalendar;
import java.math.BigDecimal;
-import java.util.Calendar;
-import java.util.GregorianCalendar;
-import static org.junit.jupiter.api.Assertions.*;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* General MX into XML serialization test cases
@@ -93,22 +90,6 @@ public void testWriteXml2() {
}
}
- @Test
- public void testWriteDateTime() throws Exception {
- final MxPacs00800102 mx1 = new MxPacs00800102();
- mx1.setFIToFICstmrCdtTrf(new FIToFICustomerCreditTransferV02().addCdtTrfTxInf(new CreditTransferTransactionInformation11()));
- final XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2015, Calendar.NOVEMBER, 19, 12, 13, 14));
- mx1.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).setSttlmTmIndctn((new SettlementDateTimeIndication1()).setCdtDtTm(cal));
- final String xml = mx1.message();
- //System.out.println(mx1.message());
- assertTrue(xml.contains("2015-11-19T12:13:14.000"));
-
- final MxPacs00800102 mx2 = MxPacs00800102.parse(xml);
- //System.out.println(mx2.message());
- assertNotNull(mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmIndctn());
- assertNotNull(mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmIndctn().getCdtDtTm());
- }
-
@Test
public void testWriteXmlMxFxtr01400102() {
final MxFxtr01400102 mx = new MxFxtr01400102();
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/XmlEventWriterTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/XmlEventWriterTest.java
index 61d683a1d..86b31eb42 100644
--- a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/XmlEventWriterTest.java
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/XmlEventWriterTest.java
@@ -49,9 +49,9 @@ public void test_whiteSpaceInAttribute() throws IOException {
MxSeev03100209 mx = MxSeev03100209.parse(xml);
assertMessage(mx);
String xmlResult = mx.message();
- // Original issue
+ // original issue
assertFalse(xmlResult.contains("0.000000"));
- // Excpected result
+ // expected result
assertTrue(xmlResult.contains("0.000000"));
}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapterTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapterTest.java
new file mode 100644
index 000000000..9cbe7a2d7
--- /dev/null
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapterTest.java
@@ -0,0 +1,119 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class DefaultXMLGregorianCalendarAdapterTest {
+
+ private DefaultXMLGregorianCalendarAdapter adapter;
+
+ @BeforeEach
+ public void setup() throws DatatypeConfigurationException {
+ this.adapter = new DefaultXMLGregorianCalendarAdapter();
+ }
+
+ /*
+ * Date time
+ */
+
+ @Test
+ public void testDateTimeWithFractionWithOffset() throws Exception {
+ String dateTime = "2021-10-19T12:13:14.123-03:00";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testDateTimeWithFractionWithUTC() throws Exception {
+ String dateTime = "2021-10-19T12:13:14.123Z";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testDateTimeNoFractionWithOffset() throws Exception {
+ String dateTime = "2021-10-19T12:13:14-03:00";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testDateTimeNoFractionUTC() throws Exception {
+ String dateTime = "2021-10-19T12:13:14Z";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ /*
+ * Time
+ */
+
+ @Test
+ public void testTimeWithFractionWithOffset() throws Exception {
+ String dateTime = "12:13:14.123-03:00";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testTimeWithFractionWithUTC() throws Exception {
+ String dateTime = "12:13:14.123Z";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testTimeNoFractionWithOffset() throws Exception {
+ String dateTime = "12:13:14-03:00";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ @Test
+ public void testTimeNoFractionUTC() throws Exception {
+ String dateTime = "12:13:14Z";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+ /*
+ * Date
+ */
+
+ @Test
+ public void testDate() throws Exception {
+ String dateTime = "2021-10-19";
+ XMLGregorianCalendar cal = adapter.unmarshal(dateTime);
+ String val = adapter.marshal(cal);
+ assertEquals(dateTime, val);
+ }
+
+}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/MxWriteWithAdaptersTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/MxWriteWithAdaptersTest.java
new file mode 100644
index 000000000..266a37833
--- /dev/null
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/MxWriteWithAdaptersTest.java
@@ -0,0 +1,237 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import com.prowidesoftware.swift.model.MxId;
+import com.prowidesoftware.swift.model.mx.*;
+import com.prowidesoftware.swift.model.mx.dic.CreditTransferTransactionInformation11;
+import com.prowidesoftware.swift.model.mx.dic.FIToFICustomerCreditTransferV02;
+import com.prowidesoftware.swift.model.mx.dic.GroupHeader33;
+import com.prowidesoftware.swift.model.mx.dic.SettlementTimeRequest2;
+import org.junit.jupiter.api.Test;
+
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.math.BigDecimal;
+import java.text.SimpleDateFormat;
+import java.time.OffsetDateTime;
+import java.util.Calendar;
+import java.util.GregorianCalendar;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+public class MxWriteWithAdaptersTest {
+
+ @Test
+ public void testDocumentDateTime_DefaultAdapters_noFractionalSecond() throws DatatypeConfigurationException {
+ XMLGregorianCalendar noFractionalSecond = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ MxPacs00800102 mx1 = sample(noFractionalSecond);
+
+ final String xml = mx1.message();
+ //System.out.println(xml);
+ assertTrue(xml.contains("2021-10-19T12:13:14"+ OffsetDateTime.now().getOffset() + ""));
+ assertTrue(xml.contains("2021-10-19"));
+ assertTrue(xml.contains("12:13:14"+ OffsetDateTime.now().getOffset() + ""));
+
+ final MxPacs00800102 mx2 = MxPacs00800102.parse(xml);
+ //System.out.println(mx2.message());
+
+ // assert date time propagation
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+
+ // assert date propagation
+ XMLGregorianCalendar intrBkSttlmDt1 = mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ XMLGregorianCalendar intrBkSttlmDt2 = mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ assertNotNull(intrBkSttlmDt2);
+ assertEquals(intrBkSttlmDt1.getYear(), intrBkSttlmDt2.getYear());
+ assertEquals(intrBkSttlmDt1.getMonth(), intrBkSttlmDt2.getMonth());
+ assertEquals(intrBkSttlmDt1.getDay(), intrBkSttlmDt2.getDay());
+
+ // assert time propagation
+ XMLGregorianCalendar clsTm1 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ XMLGregorianCalendar clsTm2 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ assertNotNull(clsTm2);
+ assertEquals(clsTm1.getHour(), clsTm2.getHour());
+ assertEquals(clsTm1.getMinute(), clsTm2.getMinute());
+ assertEquals(clsTm1.getSecond(), clsTm2.getSecond());
+ assertEquals(clsTm1.getFractionalSecond(), clsTm2.getFractionalSecond());
+ assertEquals(clsTm1.getTimezone(), clsTm2.getTimezone());
+ }
+
+ @Test
+ public void testDocumentDateTime_DefaultAdapters_Z() throws DatatypeConfigurationException {
+ XMLGregorianCalendar utc = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ utc.setTimezone(0);
+ MxPacs00800102 mx1 = sample(utc);
+
+ final String xml = mx1.message();
+ //System.out.println(xml);
+ assertTrue(xml.contains("2021-10-19T12:13:14+00:00"));
+ assertTrue(xml.contains("2021-10-19"));
+ assertTrue(xml.contains("12:13:14+00:00"));
+
+ final MxPacs00800102 mx2 = MxPacs00800102.parse(xml);
+ //System.out.println(mx2.message());
+
+ // assert date time propagation
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+
+ // assert date propagation
+ XMLGregorianCalendar intrBkSttlmDt1 = mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ XMLGregorianCalendar intrBkSttlmDt2 = mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ assertNotNull(intrBkSttlmDt2);
+ assertEquals(intrBkSttlmDt1.getYear(), intrBkSttlmDt2.getYear());
+ assertEquals(intrBkSttlmDt1.getMonth(), intrBkSttlmDt2.getMonth());
+ assertEquals(intrBkSttlmDt1.getDay(), intrBkSttlmDt2.getDay());
+
+ // assert time propagation
+ XMLGregorianCalendar clsTm1 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ XMLGregorianCalendar clsTm2 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ assertNotNull(clsTm2);
+ assertEquals(clsTm1.getHour(), clsTm2.getHour());
+ assertEquals(clsTm1.getMinute(), clsTm2.getMinute());
+ assertEquals(clsTm1.getSecond(), clsTm2.getSecond());
+ assertEquals(clsTm1.getFractionalSecond(), clsTm2.getFractionalSecond());
+ assertEquals(clsTm1.getTimezone(), clsTm2.getTimezone());
+ }
+
+ @Test
+ public void testDocumentDateTime_DefaultAdapters_fractionalSecond() throws DatatypeConfigurationException {
+ XMLGregorianCalendar fractionalSecond = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ fractionalSecond.setFractionalSecond(new BigDecimal("0.123"));
+ MxPacs00800102 mx1 = sample(fractionalSecond);
+
+ final String xml = mx1.message();
+ //System.out.println(xml);
+ assertTrue(xml.contains("2021-10-19T12:13:14.123"+ OffsetDateTime.now().getOffset() + ""));
+ assertTrue(xml.contains("2021-10-19"));
+ assertTrue(xml.contains("12:13:14.123"+ OffsetDateTime.now().getOffset() + ""));
+
+ final MxPacs00800102 mx2 = MxPacs00800102.parse(xml);
+ //System.out.println(mx2.message());
+
+ // assert date time propagation
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+
+ // assert date propagation
+ XMLGregorianCalendar intrBkSttlmDt1 = mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ XMLGregorianCalendar intrBkSttlmDt2 = mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt();
+ assertNotNull(intrBkSttlmDt2);
+ assertEquals(intrBkSttlmDt1.getYear(), intrBkSttlmDt2.getYear());
+ assertEquals(intrBkSttlmDt1.getMonth(), intrBkSttlmDt2.getMonth());
+ assertEquals(intrBkSttlmDt1.getDay(), intrBkSttlmDt2.getDay());
+
+ // assert time propagation
+ XMLGregorianCalendar clsTm1 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ XMLGregorianCalendar clsTm2 = mx2.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().getCLSTm();
+ assertNotNull(clsTm2);
+ assertEquals(clsTm1.getHour(), clsTm2.getHour());
+ assertEquals(clsTm1.getMinute(), clsTm2.getMinute());
+ assertEquals(clsTm1.getSecond(), clsTm2.getSecond());
+ assertEquals(clsTm1.getFractionalSecond(), clsTm2.getFractionalSecond());
+ assertEquals(clsTm1.getTimezone(), clsTm2.getTimezone());
+ }
+
+ @Test
+ public void testDocumentDateTime_CustomPattern() throws DatatypeConfigurationException {
+ XMLGregorianCalendar noFractionalSecond = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ MxPacs00800102 mx1 = sample(noFractionalSecond);
+
+ MxWriteConfiguration conf = new MxWriteConfiguration();
+ conf.adapters.dateTimeAdapter = new IsoDateTimeAdapter(new ZonedDateTimeAdapter(new SimpleDateFormat("yy-MM-dd HH:mm")));
+ conf.adapters.dateAdapter = new IsoDateAdapter(new SimpleDateAdapter(new SimpleDateFormat("yy-MM-dd")));
+
+ final String xml = mx1.message(conf);
+ //System.out.println(xml);
+ assertTrue(xml.contains("21-10-19 12:13"));
+ assertTrue(xml.contains("21-10-19"));
+
+ final MxPacs00800102 mx2 = MxPacs00800102.parse(xml, new MxReadConfiguration(conf));
+ //System.out.println(mx2.message());
+
+ // assert date time propagation (seconds truncated in mx2)
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getYear(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getYear());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getMonth(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getMonth());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getDay(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getDay());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getHour(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getHour());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getMinute(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm().getMinute());
+
+ // assert date propagation
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getYear(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getYear());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getMonth(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getMonth());
+ assertEquals(mx1.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getDay(), mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt().getDay());
+ }
+
+ @Test
+ public void testDocumentDateTime_CustomAdapter() throws DatatypeConfigurationException {
+ XMLGregorianCalendar noFractionalSecond = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ MxPacs00800102 mx1 = sample(noFractionalSecond);
+
+ MxWriteConfiguration conf = new MxWriteConfiguration();
+ conf.adapters.dateTimeAdapter = new IsoDateTimeAdapter(new TestCustomAdapter());
+ conf.adapters.dateAdapter = new IsoDateAdapter(new TestCustomAdapter());
+
+ final String xml = mx1.message(conf);
+ //System.out.println(xml);
+ assertTrue(xml.contains("foobar"));
+ assertTrue(xml.contains("foobar"));
+
+ final MxPacs00800102 mx2 = MxPacs00800102.parse(xml, new MxReadConfiguration(conf));
+ //System.out.println(mx2.message());
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getCreDtTm());
+ assertNotNull(mx2.getFIToFICstmrCdtTrf().getGrpHdr().getIntrBkSttlmDt());
+ }
+
+ @Test
+ public void testAppHdrDateTime_DefaultAdapters() throws DatatypeConfigurationException {
+ AppHdr h1 = header();
+
+ final String xml = h1.xml();
+ //System.out.println(xml);
+ assertTrue(xml.contains("2021-10-19T12:13:14"+ OffsetDateTime.now().getOffset() + ""));
+
+ final BusinessAppHdrV02 h2 = (BusinessAppHdrV02) AppHdrParser.parse(xml).get();
+ //System.out.println(mx2.message());
+ assertNotNull(h2.getCreDt());
+ assertEquals(h1.creationDate(), h2.getCreDt());
+ }
+
+ private MxPacs00800102 sample(final XMLGregorianCalendar cal) {
+ final MxPacs00800102 mx = new MxPacs00800102();
+ mx.setFIToFICstmrCdtTrf(new FIToFICustomerCreditTransferV02());
+ mx.getFIToFICstmrCdtTrf().setGrpHdr(new GroupHeader33());
+ mx.getFIToFICstmrCdtTrf().getGrpHdr().setCreDtTm(cal); // date time
+ mx.getFIToFICstmrCdtTrf().getGrpHdr().setIntrBkSttlmDt(cal); //date
+ mx.getFIToFICstmrCdtTrf().addCdtTrfTxInf(new CreditTransferTransactionInformation11());
+ mx.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).setSttlmTmReq(new SettlementTimeRequest2());
+ mx.getFIToFICstmrCdtTrf().getCdtTrfTxInf().get(0).getSttlmTmReq().setCLSTm(cal); // time
+ return mx;
+ }
+
+ private AppHdr header() throws DatatypeConfigurationException {
+ final XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(new GregorianCalendar(2021, Calendar.OCTOBER, 19, 12, 13, 14));
+ BusinessAppHdrV02 bah = AppHdrFactory.createBusinessAppHdrV02("AAAAUSXXXXX", "BBBBUSXXXXX", "ref", new MxId("pacs.008.001.08"));
+ bah.setCreDt(cal);
+ return bah;
+ }
+
+}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/TestCustomAdapter.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/TestCustomAdapter.java
new file mode 100644
index 000000000..5a4a7cd32
--- /dev/null
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/TestCustomAdapter.java
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+public class TestCustomAdapter extends XmlAdapter {
+
+ @Override
+ public XMLGregorianCalendar unmarshal(String v) throws Exception {
+ return DatatypeFactory.newInstance().newXMLGregorianCalendar();
+ }
+
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ return "foobar";
+ }
+
+}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapterTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapterTest.java
new file mode 100644
index 000000000..6d54b1c76
--- /dev/null
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedDateTimeAdapterTest.java
@@ -0,0 +1,87 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import org.junit.jupiter.api.Test;
+
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.math.BigDecimal;
+import java.math.BigInteger;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class ZonedDateTimeAdapterTest {
+
+ private ZonedDateTimeAdapter adapter = new ZonedDateTimeAdapter();
+
+ @Test
+ public void testUnmarshallFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("2022-03-04T12:50:08.123-03:00");
+ assertEquals(2022, cal.getYear());
+ assertEquals(3, cal.getMonth());
+ assertEquals(4, cal.getDay());
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(new BigDecimal("0.123"), cal.getFractionalSecond());
+ assertEquals(-180, cal.getTimezone());
+ }
+
+ @Test
+ public void testUnmarshallNoFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("2022-03-04T12:50:08-03:00");
+ assertEquals(2022, cal.getYear());
+ assertEquals(3, cal.getMonth());
+ assertEquals(4, cal.getDay());
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(null, cal.getFractionalSecond());
+ assertEquals(-180, cal.getTimezone());
+ }
+
+ @Test
+ public void testUnmarshallNoOffset() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("2022-03-04T12:50:08");
+ assertEquals(2022, cal.getYear());
+ assertEquals(3, cal.getMonth());
+ assertEquals(4, cal.getDay());
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(null, cal.getFractionalSecond());
+ }
+
+ @Test
+ public void testMarshallFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, new BigDecimal("0.123"), -180);
+ assertEquals("2022-03-04T12:50:08.123-03:00", adapter.marshal(cal));
+ }
+
+ @Test
+ public void testMarshallNoFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, null, -180);
+ assertEquals("2022-03-04T12:50:08-03:00", adapter.marshal(cal));
+ }
+
+ @Test
+ public void testMarshallNoOffset() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, null, -0);
+ assertEquals("2022-03-04T12:50:08+00:00", adapter.marshal(cal));
+ }
+
+}
diff --git a/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapterTest.java b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapterTest.java
new file mode 100644
index 000000000..52aed7304
--- /dev/null
+++ b/iso20022-core/src/test/java/com/prowidesoftware/swift/model/mx/adapters/ZonedTimeAdapterTest.java
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import org.junit.jupiter.api.Test;
+
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+import java.math.BigDecimal;
+import java.math.BigInteger;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class ZonedTimeAdapterTest {
+
+ private ZonedTimeAdapter adapter = new ZonedTimeAdapter();
+
+ @Test
+ public void testUnmarshallFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("12:50:08.123-03:00");
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(new BigDecimal("0.123"), cal.getFractionalSecond());
+ assertEquals(-180, cal.getTimezone());
+ }
+
+ @Test
+ public void testUnmarshallNoFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("12:50:08-03:00");
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(null, cal.getFractionalSecond());
+ assertEquals(-180, cal.getTimezone());
+ }
+
+ @Test
+ public void testUnmarshallNoOffset() throws Exception {
+ XMLGregorianCalendar cal = adapter.unmarshal("12:50:08");
+ assertEquals(12, cal.getHour());
+ assertEquals(50, cal.getMinute());
+ assertEquals(8, cal.getSecond());
+ assertEquals(null, cal.getFractionalSecond());
+ }
+
+ @Test
+ public void testMarshallFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, new BigDecimal("0.123"), -180);
+ assertEquals("12:50:08.123-03:00", adapter.marshal(cal));
+ }
+
+ @Test
+ public void testMarshallNoFractionOfSeconds() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, null, -180);
+ assertEquals("12:50:08-03:00", adapter.marshal(cal));
+ }
+
+ @Test
+ public void testMarshallNoOffset() throws Exception {
+ XMLGregorianCalendar cal = DatatypeFactory.newInstance().newXMLGregorianCalendar(BigInteger.valueOf(2022), 3, 4, 12, 50, 8, null, -0);
+ assertEquals("12:50:08+00:00", adapter.marshal(cal));
+ }
+
+}
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100101.java
index 1c85c0c14..85dd67dbc 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100101 parse(String xml) {
- return ((MxAcmt00100101) MxReadImpl.parse(MxAcmt00100101 .class, xml, _classes));
+ return ((MxAcmt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100102.java
index dfebd07b4..9bf03d3e9 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100102 parse(String xml) {
- return ((MxAcmt00100102) MxReadImpl.parse(MxAcmt00100102 .class, xml, _classes));
+ return ((MxAcmt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100103.java
index 4e45d0aea..f57e35d30 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100103 parse(String xml) {
- return ((MxAcmt00100103) MxReadImpl.parse(MxAcmt00100103 .class, xml, _classes));
+ return ((MxAcmt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100104.java
index 747fa68dc..29fc71f6d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100104 parse(String xml) {
- return ((MxAcmt00100104) MxReadImpl.parse(MxAcmt00100104 .class, xml, _classes));
+ return ((MxAcmt00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100105.java
index dfd91dcc8..dca49ef0b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100105 parse(String xml) {
- return ((MxAcmt00100105) MxReadImpl.parse(MxAcmt00100105 .class, xml, _classes));
+ return ((MxAcmt00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100106.java
index 6c8c4a52f..1ad887c8b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100106 parse(String xml) {
- return ((MxAcmt00100106) MxReadImpl.parse(MxAcmt00100106 .class, xml, _classes));
+ return ((MxAcmt00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100107.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100107.java
index 4af94605b..f89418531 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100107.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100107 parse(String xml) {
- return ((MxAcmt00100107) MxReadImpl.parse(MxAcmt00100107 .class, xml, _classes));
+ return ((MxAcmt00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100108.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100108.java
index cecf26cc1..4a0002492 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100108.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00100108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00100108 parse(String xml) {
- return ((MxAcmt00100108) MxReadImpl.parse(MxAcmt00100108 .class, xml, _classes));
+ return ((MxAcmt00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00100108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200101.java
index e905b9278..6d0b85fe6 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200101 parse(String xml) {
- return ((MxAcmt00200101) MxReadImpl.parse(MxAcmt00200101 .class, xml, _classes));
+ return ((MxAcmt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200102.java
index 621c49bd5..875338cc1 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200102 parse(String xml) {
- return ((MxAcmt00200102) MxReadImpl.parse(MxAcmt00200102 .class, xml, _classes));
+ return ((MxAcmt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200103.java
index 66e72e5be..d8aab8a4d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200103 parse(String xml) {
- return ((MxAcmt00200103) MxReadImpl.parse(MxAcmt00200103 .class, xml, _classes));
+ return ((MxAcmt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200104.java
index 9b206daf4..39ee23394 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200104 parse(String xml) {
- return ((MxAcmt00200104) MxReadImpl.parse(MxAcmt00200104 .class, xml, _classes));
+ return ((MxAcmt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200105.java
index d510f2e95..dead654e6 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200105 parse(String xml) {
- return ((MxAcmt00200105) MxReadImpl.parse(MxAcmt00200105 .class, xml, _classes));
+ return ((MxAcmt00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200106.java
index 3cc588e5d..646f72c8b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200106 parse(String xml) {
- return ((MxAcmt00200106) MxReadImpl.parse(MxAcmt00200106 .class, xml, _classes));
+ return ((MxAcmt00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200107.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200107.java
index d0d5bfa6b..bb0e4b661 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200107.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200107 parse(String xml) {
- return ((MxAcmt00200107) MxReadImpl.parse(MxAcmt00200107 .class, xml, _classes));
+ return ((MxAcmt00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200108.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200108.java
index dcf0c8dae..1dff7723e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200108.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00200108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00200108 parse(String xml) {
- return ((MxAcmt00200108) MxReadImpl.parse(MxAcmt00200108 .class, xml, _classes));
+ return ((MxAcmt00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00200108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300101.java
index e8353fb66..985ff553b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300101 parse(String xml) {
- return ((MxAcmt00300101) MxReadImpl.parse(MxAcmt00300101 .class, xml, _classes));
+ return ((MxAcmt00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300102.java
index a00a33bc6..a32c8030e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300102 parse(String xml) {
- return ((MxAcmt00300102) MxReadImpl.parse(MxAcmt00300102 .class, xml, _classes));
+ return ((MxAcmt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300103.java
index 6a0e01c4f..ce4de9354 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300103 parse(String xml) {
- return ((MxAcmt00300103) MxReadImpl.parse(MxAcmt00300103 .class, xml, _classes));
+ return ((MxAcmt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300104.java
index 346c2a5a8..7d5f410cb 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300104 parse(String xml) {
- return ((MxAcmt00300104) MxReadImpl.parse(MxAcmt00300104 .class, xml, _classes));
+ return ((MxAcmt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300105.java
index 5a97bf2f7..e08da73cf 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300105 parse(String xml) {
- return ((MxAcmt00300105) MxReadImpl.parse(MxAcmt00300105 .class, xml, _classes));
+ return ((MxAcmt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300106.java
index a1d4b0785..a5f8b535a 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300106 parse(String xml) {
- return ((MxAcmt00300106) MxReadImpl.parse(MxAcmt00300106 .class, xml, _classes));
+ return ((MxAcmt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300107.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300107.java
index 3e5d53e20..55760548c 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300107.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300107 parse(String xml) {
- return ((MxAcmt00300107) MxReadImpl.parse(MxAcmt00300107 .class, xml, _classes));
+ return ((MxAcmt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300108.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300108.java
index cdbc223ff..cbe0ed7c4 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300108.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00300108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00300108 parse(String xml) {
- return ((MxAcmt00300108) MxReadImpl.parse(MxAcmt00300108 .class, xml, _classes));
+ return ((MxAcmt00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00300108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400101.java
index f3dad4f6a..c4be12bb0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400101 parse(String xml) {
- return ((MxAcmt00400101) MxReadImpl.parse(MxAcmt00400101 .class, xml, _classes));
+ return ((MxAcmt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400102.java
index 03e0576cd..38da98385 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400102 parse(String xml) {
- return ((MxAcmt00400102) MxReadImpl.parse(MxAcmt00400102 .class, xml, _classes));
+ return ((MxAcmt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400103.java
index 4e050cf0f..5f1017e86 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400103 parse(String xml) {
- return ((MxAcmt00400103) MxReadImpl.parse(MxAcmt00400103 .class, xml, _classes));
+ return ((MxAcmt00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400104.java
index c1cc2cf41..e9b57b9dd 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400104 parse(String xml) {
- return ((MxAcmt00400104) MxReadImpl.parse(MxAcmt00400104 .class, xml, _classes));
+ return ((MxAcmt00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400105.java
index f85780b7f..0c9cd946c 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400105 parse(String xml) {
- return ((MxAcmt00400105) MxReadImpl.parse(MxAcmt00400105 .class, xml, _classes));
+ return ((MxAcmt00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400106.java
index edf2631e4..3c3eabaaa 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00400106 parse(String xml) {
- return ((MxAcmt00400106) MxReadImpl.parse(MxAcmt00400106 .class, xml, _classes));
+ return ((MxAcmt00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500101.java
index e10bf83ba..95ac4a469 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500101 parse(String xml) {
- return ((MxAcmt00500101) MxReadImpl.parse(MxAcmt00500101 .class, xml, _classes));
+ return ((MxAcmt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500102.java
index 0d226f81f..82d998924 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500102 parse(String xml) {
- return ((MxAcmt00500102) MxReadImpl.parse(MxAcmt00500102 .class, xml, _classes));
+ return ((MxAcmt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500103.java
index ab23525be..6294048a9 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500103 parse(String xml) {
- return ((MxAcmt00500103) MxReadImpl.parse(MxAcmt00500103 .class, xml, _classes));
+ return ((MxAcmt00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500104.java
index ade1d60d1..b1424f5c6 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500104 parse(String xml) {
- return ((MxAcmt00500104) MxReadImpl.parse(MxAcmt00500104 .class, xml, _classes));
+ return ((MxAcmt00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500105.java
index beba02760..eb0d058b8 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500105 parse(String xml) {
- return ((MxAcmt00500105) MxReadImpl.parse(MxAcmt00500105 .class, xml, _classes));
+ return ((MxAcmt00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500106.java
index d9e90246b..278449ea5 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00500106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00500106 parse(String xml) {
- return ((MxAcmt00500106) MxReadImpl.parse(MxAcmt00500106 .class, xml, _classes));
+ return ((MxAcmt00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00500106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600101.java
index abe1cb719..d2fb676d3 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600101 parse(String xml) {
- return ((MxAcmt00600101) MxReadImpl.parse(MxAcmt00600101 .class, xml, _classes));
+ return ((MxAcmt00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600102.java
index 66b447e9e..d8709c6a6 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600102 parse(String xml) {
- return ((MxAcmt00600102) MxReadImpl.parse(MxAcmt00600102 .class, xml, _classes));
+ return ((MxAcmt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600103.java
index 96b613e08..2cb69a286 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600103 parse(String xml) {
- return ((MxAcmt00600103) MxReadImpl.parse(MxAcmt00600103 .class, xml, _classes));
+ return ((MxAcmt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600104.java
index e1a335057..d5dbbfaf0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600104 parse(String xml) {
- return ((MxAcmt00600104) MxReadImpl.parse(MxAcmt00600104 .class, xml, _classes));
+ return ((MxAcmt00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600105.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600105.java
index 42dc69f66..d15de903f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600105.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600105 parse(String xml) {
- return ((MxAcmt00600105) MxReadImpl.parse(MxAcmt00600105 .class, xml, _classes));
+ return ((MxAcmt00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600106.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600106.java
index 685e6d09d..0a3bf89d4 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600106.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600106 parse(String xml) {
- return ((MxAcmt00600106) MxReadImpl.parse(MxAcmt00600106 .class, xml, _classes));
+ return ((MxAcmt00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600107.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600107.java
index e01f9dc87..fd143b77e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600107.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00600107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00600107 parse(String xml) {
- return ((MxAcmt00600107) MxReadImpl.parse(MxAcmt00600107 .class, xml, _classes));
+ return ((MxAcmt00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00600107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700101.java
index 3e4b14dbf..b56032803 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00700101 parse(String xml) {
- return ((MxAcmt00700101) MxReadImpl.parse(MxAcmt00700101 .class, xml, _classes));
+ return ((MxAcmt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700102.java
index 892fb8556..a0d3e3481 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00700102 parse(String xml) {
- return ((MxAcmt00700102) MxReadImpl.parse(MxAcmt00700102 .class, xml, _classes));
+ return ((MxAcmt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700103.java
index 3c81c43f3..a3b6f3ea5 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00700103 parse(String xml) {
- return ((MxAcmt00700103) MxReadImpl.parse(MxAcmt00700103 .class, xml, _classes));
+ return ((MxAcmt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700104.java
index 2813ccc5b..a4714e531 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00700104 parse(String xml) {
- return ((MxAcmt00700104) MxReadImpl.parse(MxAcmt00700104 .class, xml, _classes));
+ return ((MxAcmt00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800101.java
index 0ff1e8645..aa00056ed 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00800101 parse(String xml) {
- return ((MxAcmt00800101) MxReadImpl.parse(MxAcmt00800101 .class, xml, _classes));
+ return ((MxAcmt00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800102.java
index 692e603e4..9ffb2a0b4 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00800102 parse(String xml) {
- return ((MxAcmt00800102) MxReadImpl.parse(MxAcmt00800102 .class, xml, _classes));
+ return ((MxAcmt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800103.java
index 2865dfcd2..0a5ca2a8d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00800103 parse(String xml) {
- return ((MxAcmt00800103) MxReadImpl.parse(MxAcmt00800103 .class, xml, _classes));
+ return ((MxAcmt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800104.java
index 89ca8e29e..50bd98d80 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00800104 parse(String xml) {
- return ((MxAcmt00800104) MxReadImpl.parse(MxAcmt00800104 .class, xml, _classes));
+ return ((MxAcmt00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900101.java
index 88c4d7ab2..5262c88b0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00900101 parse(String xml) {
- return ((MxAcmt00900101) MxReadImpl.parse(MxAcmt00900101 .class, xml, _classes));
+ return ((MxAcmt00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900102.java
index e51d6b79f..f6db8ea59 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00900102 parse(String xml) {
- return ((MxAcmt00900102) MxReadImpl.parse(MxAcmt00900102 .class, xml, _classes));
+ return ((MxAcmt00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900103.java
index aac489313..79026d9ba 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt00900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt00900103 parse(String xml) {
- return ((MxAcmt00900103) MxReadImpl.parse(MxAcmt00900103 .class, xml, _classes));
+ return ((MxAcmt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt00900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000101.java
index 845885dbd..007eb81dc 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01000101 parse(String xml) {
- return ((MxAcmt01000101) MxReadImpl.parse(MxAcmt01000101 .class, xml, _classes));
+ return ((MxAcmt01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000102.java
index 3c94bda32..63220b88b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01000102 parse(String xml) {
- return ((MxAcmt01000102) MxReadImpl.parse(MxAcmt01000102 .class, xml, _classes));
+ return ((MxAcmt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000103.java
index 7dab3257e..88f2fe33d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01000103 parse(String xml) {
- return ((MxAcmt01000103) MxReadImpl.parse(MxAcmt01000103 .class, xml, _classes));
+ return ((MxAcmt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100101.java
index b84a0e8f7..ef48f0772 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01100101 parse(String xml) {
- return ((MxAcmt01100101) MxReadImpl.parse(MxAcmt01100101 .class, xml, _classes));
+ return ((MxAcmt01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100102.java
index 9bdf602be..e4ce19f4f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01100102 parse(String xml) {
- return ((MxAcmt01100102) MxReadImpl.parse(MxAcmt01100102 .class, xml, _classes));
+ return ((MxAcmt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100103.java
index 8e9586840..9de2ea9bc 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01100103 parse(String xml) {
- return ((MxAcmt01100103) MxReadImpl.parse(MxAcmt01100103 .class, xml, _classes));
+ return ((MxAcmt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200101.java
index 400859dd5..c5ef471f1 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01200101 parse(String xml) {
- return ((MxAcmt01200101) MxReadImpl.parse(MxAcmt01200101 .class, xml, _classes));
+ return ((MxAcmt01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200102.java
index 29b884059..c9930a989 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01200102 parse(String xml) {
- return ((MxAcmt01200102) MxReadImpl.parse(MxAcmt01200102 .class, xml, _classes));
+ return ((MxAcmt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200103.java
index 487c110a2..6e7244cd2 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01200103 parse(String xml) {
- return ((MxAcmt01200103) MxReadImpl.parse(MxAcmt01200103 .class, xml, _classes));
+ return ((MxAcmt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300101.java
index 221c941ff..226d76c3d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01300101 parse(String xml) {
- return ((MxAcmt01300101) MxReadImpl.parse(MxAcmt01300101 .class, xml, _classes));
+ return ((MxAcmt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300102.java
index 1c79150e9..1f7c85ebd 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01300102 parse(String xml) {
- return ((MxAcmt01300102) MxReadImpl.parse(MxAcmt01300102 .class, xml, _classes));
+ return ((MxAcmt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300103.java
index 104588a71..5723524ab 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01300103 parse(String xml) {
- return ((MxAcmt01300103) MxReadImpl.parse(MxAcmt01300103 .class, xml, _classes));
+ return ((MxAcmt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400101.java
index 480812a3c..08d47efbf 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01400101 parse(String xml) {
- return ((MxAcmt01400101) MxReadImpl.parse(MxAcmt01400101 .class, xml, _classes));
+ return ((MxAcmt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400102.java
index f5900da57..2c444a4a8 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01400102 parse(String xml) {
- return ((MxAcmt01400102) MxReadImpl.parse(MxAcmt01400102 .class, xml, _classes));
+ return ((MxAcmt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400103.java
index 76f164642..ee5757931 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01400103 parse(String xml) {
- return ((MxAcmt01400103) MxReadImpl.parse(MxAcmt01400103 .class, xml, _classes));
+ return ((MxAcmt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400104.java
index 7649a5365..026163d02 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01400104 parse(String xml) {
- return ((MxAcmt01400104) MxReadImpl.parse(MxAcmt01400104 .class, xml, _classes));
+ return ((MxAcmt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500101.java
index c9897b0ce..9c7001cd6 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01500101 parse(String xml) {
- return ((MxAcmt01500101) MxReadImpl.parse(MxAcmt01500101 .class, xml, _classes));
+ return ((MxAcmt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500102.java
index e1b4b36d2..973819475 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01500102 parse(String xml) {
- return ((MxAcmt01500102) MxReadImpl.parse(MxAcmt01500102 .class, xml, _classes));
+ return ((MxAcmt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500103.java
index a0204a00f..e7ff9922f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01500103 parse(String xml) {
- return ((MxAcmt01500103) MxReadImpl.parse(MxAcmt01500103 .class, xml, _classes));
+ return ((MxAcmt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600101.java
index 17c7fab8c..d1ed8ee12 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01600101 parse(String xml) {
- return ((MxAcmt01600101) MxReadImpl.parse(MxAcmt01600101 .class, xml, _classes));
+ return ((MxAcmt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600102.java
index 8f1b28a3d..a4925d052 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01600102 parse(String xml) {
- return ((MxAcmt01600102) MxReadImpl.parse(MxAcmt01600102 .class, xml, _classes));
+ return ((MxAcmt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600103.java
index 493c4abc7..404d2eb8f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01600103 parse(String xml) {
- return ((MxAcmt01600103) MxReadImpl.parse(MxAcmt01600103 .class, xml, _classes));
+ return ((MxAcmt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700101.java
index 5a732ac6f..5e3d82fb3 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01700101 parse(String xml) {
- return ((MxAcmt01700101) MxReadImpl.parse(MxAcmt01700101 .class, xml, _classes));
+ return ((MxAcmt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700102.java
index d9cdc4429..2b3689482 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01700102 parse(String xml) {
- return ((MxAcmt01700102) MxReadImpl.parse(MxAcmt01700102 .class, xml, _classes));
+ return ((MxAcmt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700103.java
index 05b43bf60..e32aaf56f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01700103 parse(String xml) {
- return ((MxAcmt01700103) MxReadImpl.parse(MxAcmt01700103 .class, xml, _classes));
+ return ((MxAcmt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800101.java
index 85600bc3e..7b497a6a9 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01800101 parse(String xml) {
- return ((MxAcmt01800101) MxReadImpl.parse(MxAcmt01800101 .class, xml, _classes));
+ return ((MxAcmt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800102.java
index d088ab513..ef83cd790 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01800102 parse(String xml) {
- return ((MxAcmt01800102) MxReadImpl.parse(MxAcmt01800102 .class, xml, _classes));
+ return ((MxAcmt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800103.java
index d92aec0b1..1bc00ea18 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01800103 parse(String xml) {
- return ((MxAcmt01800103) MxReadImpl.parse(MxAcmt01800103 .class, xml, _classes));
+ return ((MxAcmt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900101.java
index 49266d730..20316880b 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01900101 parse(String xml) {
- return ((MxAcmt01900101) MxReadImpl.parse(MxAcmt01900101 .class, xml, _classes));
+ return ((MxAcmt01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900102.java
index d80f74590..8cce89471 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01900102 parse(String xml) {
- return ((MxAcmt01900102) MxReadImpl.parse(MxAcmt01900102 .class, xml, _classes));
+ return ((MxAcmt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900103.java
index dbb1e8958..61b06a4c7 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt01900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt01900103 parse(String xml) {
- return ((MxAcmt01900103) MxReadImpl.parse(MxAcmt01900103 .class, xml, _classes));
+ return ((MxAcmt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt01900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000101.java
index 4e54f9e51..43944e9b0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02000101 parse(String xml) {
- return ((MxAcmt02000101) MxReadImpl.parse(MxAcmt02000101 .class, xml, _classes));
+ return ((MxAcmt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000102.java
index 75a50ce68..9bf999f9c 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02000102 parse(String xml) {
- return ((MxAcmt02000102) MxReadImpl.parse(MxAcmt02000102 .class, xml, _classes));
+ return ((MxAcmt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000103.java
index bf47e007f..9de42db0f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02000103 parse(String xml) {
- return ((MxAcmt02000103) MxReadImpl.parse(MxAcmt02000103 .class, xml, _classes));
+ return ((MxAcmt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100101.java
index 962bea9a5..a6b7d81b0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02100101 parse(String xml) {
- return ((MxAcmt02100101) MxReadImpl.parse(MxAcmt02100101 .class, xml, _classes));
+ return ((MxAcmt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100102.java
index f7154a3c0..9995db78d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02100102 parse(String xml) {
- return ((MxAcmt02100102) MxReadImpl.parse(MxAcmt02100102 .class, xml, _classes));
+ return ((MxAcmt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100103.java
index 97884f0db..4fbee3d8e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02100103 parse(String xml) {
- return ((MxAcmt02100103) MxReadImpl.parse(MxAcmt02100103 .class, xml, _classes));
+ return ((MxAcmt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200101.java
index 5e00f42a4..243f3a893 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02200101 parse(String xml) {
- return ((MxAcmt02200101) MxReadImpl.parse(MxAcmt02200101 .class, xml, _classes));
+ return ((MxAcmt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200102.java
index 589a6701c..0e9155f2e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02200102 parse(String xml) {
- return ((MxAcmt02200102) MxReadImpl.parse(MxAcmt02200102 .class, xml, _classes));
+ return ((MxAcmt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300101.java
index db21699ce..c53b22735 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02300101 parse(String xml) {
- return ((MxAcmt02300101) MxReadImpl.parse(MxAcmt02300101 .class, xml, _classes));
+ return ((MxAcmt02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300102.java
index ea5464e7e..41eccd9ef 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02300102 parse(String xml) {
- return ((MxAcmt02300102) MxReadImpl.parse(MxAcmt02300102 .class, xml, _classes));
+ return ((MxAcmt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400101.java
index 29bbd80e6..3ee7b53fe 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02400101 parse(String xml) {
- return ((MxAcmt02400101) MxReadImpl.parse(MxAcmt02400101 .class, xml, _classes));
+ return ((MxAcmt02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400102.java
index f227a1906..b66da6e0a 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02400102 parse(String xml) {
- return ((MxAcmt02400102) MxReadImpl.parse(MxAcmt02400102 .class, xml, _classes));
+ return ((MxAcmt02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02500101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02500101.java
index 717b67c7a..6d655cbcb 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02500101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02500101 parse(String xml) {
- return ((MxAcmt02500101) MxReadImpl.parse(MxAcmt02500101 .class, xml, _classes));
+ return ((MxAcmt02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02600101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02600101.java
index f327ec9cc..2fb86ac06 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02600101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02600101 parse(String xml) {
- return ((MxAcmt02600101) MxReadImpl.parse(MxAcmt02600101 .class, xml, _classes));
+ return ((MxAcmt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700101.java
index 67ef9562f..0a25e538e 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02700101 parse(String xml) {
- return ((MxAcmt02700101) MxReadImpl.parse(MxAcmt02700101 .class, xml, _classes));
+ return ((MxAcmt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700102.java
index 6c18dae3d..95d038f99 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02700102 parse(String xml) {
- return ((MxAcmt02700102) MxReadImpl.parse(MxAcmt02700102 .class, xml, _classes));
+ return ((MxAcmt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700103.java
index c8e25a316..c309da0e0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02700103 parse(String xml) {
- return ((MxAcmt02700103) MxReadImpl.parse(MxAcmt02700103 .class, xml, _classes));
+ return ((MxAcmt02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700104.java
index 984c03a3c..3a73f0229 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02700104 parse(String xml) {
- return ((MxAcmt02700104) MxReadImpl.parse(MxAcmt02700104 .class, xml, _classes));
+ return ((MxAcmt02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800101.java
index 029679e57..6a6fc914a 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02800101 parse(String xml) {
- return ((MxAcmt02800101) MxReadImpl.parse(MxAcmt02800101 .class, xml, _classes));
+ return ((MxAcmt02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800102.java
index f6fb1d2b6..3d28cb179 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02800102 parse(String xml) {
- return ((MxAcmt02800102) MxReadImpl.parse(MxAcmt02800102 .class, xml, _classes));
+ return ((MxAcmt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800103.java
index a27443701..f7abbe526 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02800103 parse(String xml) {
- return ((MxAcmt02800103) MxReadImpl.parse(MxAcmt02800103 .class, xml, _classes));
+ return ((MxAcmt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800104.java
index 09e14d10a..af4a62c16 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02800104 parse(String xml) {
- return ((MxAcmt02800104) MxReadImpl.parse(MxAcmt02800104 .class, xml, _classes));
+ return ((MxAcmt02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900101.java
index 6a70506a8..fa936a8ee 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02900101 parse(String xml) {
- return ((MxAcmt02900101) MxReadImpl.parse(MxAcmt02900101 .class, xml, _classes));
+ return ((MxAcmt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900102.java
index bdb64b656..b5ed304fa 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02900102 parse(String xml) {
- return ((MxAcmt02900102) MxReadImpl.parse(MxAcmt02900102 .class, xml, _classes));
+ return ((MxAcmt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900103.java
index 51fcc334d..a286bd9b8 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02900103 parse(String xml) {
- return ((MxAcmt02900103) MxReadImpl.parse(MxAcmt02900103 .class, xml, _classes));
+ return ((MxAcmt02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900104.java
index fe82a5763..0b844275a 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt02900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt02900104 parse(String xml) {
- return ((MxAcmt02900104) MxReadImpl.parse(MxAcmt02900104 .class, xml, _classes));
+ return ((MxAcmt02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt02900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000101.java
index 072af7a6a..60a9c2aba 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03000101 parse(String xml) {
- return ((MxAcmt03000101) MxReadImpl.parse(MxAcmt03000101 .class, xml, _classes));
+ return ((MxAcmt03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000102.java
index 1da3c273c..f4b9edcfc 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03000102 parse(String xml) {
- return ((MxAcmt03000102) MxReadImpl.parse(MxAcmt03000102 .class, xml, _classes));
+ return ((MxAcmt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000103.java
index 0dd7c21c2..78e55c04f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03000103 parse(String xml) {
- return ((MxAcmt03000103) MxReadImpl.parse(MxAcmt03000103 .class, xml, _classes));
+ return ((MxAcmt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100101.java
index d6ffd4cda..95f13e1b0 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03100101 parse(String xml) {
- return ((MxAcmt03100101) MxReadImpl.parse(MxAcmt03100101 .class, xml, _classes));
+ return ((MxAcmt03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100102.java
index 8ff1bba37..231dc8e7a 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03100102 parse(String xml) {
- return ((MxAcmt03100102) MxReadImpl.parse(MxAcmt03100102 .class, xml, _classes));
+ return ((MxAcmt03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100103.java
index c21dc5d29..b36afc025 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03100103 parse(String xml) {
- return ((MxAcmt03100103) MxReadImpl.parse(MxAcmt03100103 .class, xml, _classes));
+ return ((MxAcmt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100104.java
index da59b6c99..7efdc6770 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03100104 parse(String xml) {
- return ((MxAcmt03100104) MxReadImpl.parse(MxAcmt03100104 .class, xml, _classes));
+ return ((MxAcmt03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200101.java
index 44760d871..305c8eed4 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03200101 parse(String xml) {
- return ((MxAcmt03200101) MxReadImpl.parse(MxAcmt03200101 .class, xml, _classes));
+ return ((MxAcmt03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200102.java
index 8319a898d..c0645e9b4 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03200102 parse(String xml) {
- return ((MxAcmt03200102) MxReadImpl.parse(MxAcmt03200102 .class, xml, _classes));
+ return ((MxAcmt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200103.java
index cc422ba10..5b96a3cb7 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03200103 parse(String xml) {
- return ((MxAcmt03200103) MxReadImpl.parse(MxAcmt03200103 .class, xml, _classes));
+ return ((MxAcmt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200104.java
index efbb842f5..a51f24d46 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03200104 parse(String xml) {
- return ((MxAcmt03200104) MxReadImpl.parse(MxAcmt03200104 .class, xml, _classes));
+ return ((MxAcmt03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300101.java
index c310b9067..b7112401f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03300101 parse(String xml) {
- return ((MxAcmt03300101) MxReadImpl.parse(MxAcmt03300101 .class, xml, _classes));
+ return ((MxAcmt03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300102.java
index 855936d34..b43be2865 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03300102 parse(String xml) {
- return ((MxAcmt03300102) MxReadImpl.parse(MxAcmt03300102 .class, xml, _classes));
+ return ((MxAcmt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400101.java
index d9a2754ee..4e4b6c278 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03400101 parse(String xml) {
- return ((MxAcmt03400101) MxReadImpl.parse(MxAcmt03400101 .class, xml, _classes));
+ return ((MxAcmt03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400102.java
index 2293bcac8..26f57348f 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03400102 parse(String xml) {
- return ((MxAcmt03400102) MxReadImpl.parse(MxAcmt03400102 .class, xml, _classes));
+ return ((MxAcmt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400103.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400103.java
index 95fdf1b0d..1097201f1 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400103.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03400103 parse(String xml) {
- return ((MxAcmt03400103) MxReadImpl.parse(MxAcmt03400103 .class, xml, _classes));
+ return ((MxAcmt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400104.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400104.java
index 4ac4b3f8f..df8aed14c 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400104.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03400104 parse(String xml) {
- return ((MxAcmt03400104) MxReadImpl.parse(MxAcmt03400104 .class, xml, _classes));
+ return ((MxAcmt03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500101.java
index 65dd08fce..34e0357c2 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03500101 parse(String xml) {
- return ((MxAcmt03500101) MxReadImpl.parse(MxAcmt03500101 .class, xml, _classes));
+ return ((MxAcmt03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500102.java
index e2173deb5..45e888714 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03500102 parse(String xml) {
- return ((MxAcmt03500102) MxReadImpl.parse(MxAcmt03500102 .class, xml, _classes));
+ return ((MxAcmt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03600101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03600101.java
index 7c8cc1aba..abed8285d 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03600101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03600101 parse(String xml) {
- return ((MxAcmt03600101) MxReadImpl.parse(MxAcmt03600101 .class, xml, _classes));
+ return ((MxAcmt03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700101.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700101.java
index b38d7cf4b..b996f5ac1 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700101.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03700101 parse(String xml) {
- return ((MxAcmt03700101) MxReadImpl.parse(MxAcmt03700101 .class, xml, _classes));
+ return ((MxAcmt03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700102.java b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700102.java
index 10e87481e..de18949ac 100644
--- a/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700102.java
+++ b/model-acmt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAcmt03700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAcmt03700102 parse(String xml) {
- return ((MxAcmt03700102) MxReadImpl.parse(MxAcmt03700102 .class, xml, _classes));
+ return ((MxAcmt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAcmt03700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAcmt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAcmt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract2.java
index 0cada8ee5..0a18d4c1a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class AccountContract2 {
- @XmlElement(name = "TrgtGoLiveDt")
+ @XmlElement(name = "TrgtGoLiveDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar trgtGoLiveDt;
- @XmlElement(name = "TrgtClsgDt")
+ @XmlElement(name = "TrgtClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar trgtClsgDt;
@XmlElement(name = "UrgcyFlg")
@@ -41,7 +45,7 @@ public class AccountContract2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrgtGoLiveDt() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getTrgtGoLiveDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract2 setTrgtGoLiveDt(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public AccountContract2 setTrgtGoLiveDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrgtClsgDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getTrgtClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract2 setTrgtClsgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract3.java
index 117b4eb87..4b5bc445a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,16 +32,20 @@
})
public class AccountContract3 {
- @XmlElement(name = "TrgtGoLiveDt")
+ @XmlElement(name = "TrgtGoLiveDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar trgtGoLiveDt;
- @XmlElement(name = "TrgtClsgDt")
+ @XmlElement(name = "TrgtClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar trgtClsgDt;
- @XmlElement(name = "GoLiveDt")
+ @XmlElement(name = "GoLiveDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar goLiveDt;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsgDt;
@XmlElement(name = "UrgcyFlg")
@@ -52,7 +58,7 @@ public class AccountContract3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrgtGoLiveDt() {
@@ -64,7 +70,7 @@ public XMLGregorianCalendar getTrgtGoLiveDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract3 setTrgtGoLiveDt(XMLGregorianCalendar value) {
@@ -77,7 +83,7 @@ public AccountContract3 setTrgtGoLiveDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrgtClsgDt() {
@@ -89,7 +95,7 @@ public XMLGregorianCalendar getTrgtClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract3 setTrgtClsgDt(XMLGregorianCalendar value) {
@@ -102,7 +108,7 @@ public AccountContract3 setTrgtClsgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getGoLiveDt() {
@@ -114,7 +120,7 @@ public XMLGregorianCalendar getGoLiveDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract3 setGoLiveDt(XMLGregorianCalendar value) {
@@ -127,7 +133,7 @@ public AccountContract3 setGoLiveDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -139,7 +145,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract3 setClsgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract4.java
index 75eb6406f..76d276a68 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountContract4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class AccountContract4 {
- @XmlElement(name = "TrgtClsgDt")
+ @XmlElement(name = "TrgtClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar trgtClsgDt;
@XmlElement(name = "UrgcyFlg")
@@ -40,7 +43,7 @@ public class AccountContract4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrgtClsgDt() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getTrgtClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountContract4 setTrgtClsgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatus1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatus1Code.java
index 00f9907b2..00b27eca7 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatus1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatus1Code.java
@@ -46,7 +46,7 @@ public enum AccountManagementStatus1Code {
EXEC,
/**
- * The account management instruction has been sent to the next party, eg, the next intermediary.
+ * The account management instruction has been sent to the next party, for example, the next intermediary.
*
*/
STNP;
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatusAndReason5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatusAndReason5.java
index a3ad9e1a2..0d4a3dba1 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatusAndReason5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementStatusAndReason5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class AccountManagementStatusAndReason5 {
protected AccountStatus2 acctSts;
@XmlElement(name = "BlckdSts")
protected BlockedStatusReason2Choice blckdSts;
- @XmlElement(name = "FATCARptgDt")
+ @XmlElement(name = "FATCARptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fatcaRptgDt;
- @XmlElement(name = "CRSRptgDt")
+ @XmlElement(name = "CRSRptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar crsRptgDt;
@@ -244,7 +248,7 @@ public AccountManagementStatusAndReason5 setBlckdSts(BlockedStatusReason2Choice
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFATCARptgDt() {
@@ -256,7 +260,7 @@ public XMLGregorianCalendar getFATCARptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountManagementStatusAndReason5 setFATCARptgDt(XMLGregorianCalendar value) {
@@ -269,7 +273,7 @@ public AccountManagementStatusAndReason5 setFATCARptgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCRSRptgDt() {
@@ -281,7 +285,7 @@ public XMLGregorianCalendar getCRSRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountManagementStatusAndReason5 setCRSRptgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementType1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementType1Code.java
index 39be8d87e..4d8ca8b6b 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementType1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountManagementType1Code.java
@@ -26,13 +26,13 @@ public enum AccountManagementType1Code {
/**
- * Refers to an account opening instruction message.
+ * Refer to an account opening instruction message.
*
*/
ACCO,
/**
- * Refers to an account modification instruction message.
+ * Refer to an account modification instruction message.
*
*/
ACCM;
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountSwitchDetails1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountSwitchDetails1.java
index de5b7555a..a4ab26f3d 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountSwitchDetails1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountSwitchDetails1.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +41,12 @@ public class AccountSwitchDetails1 {
protected String unqRefNb;
@XmlElement(name = "RtgUnqRefNb", required = true)
protected String rtgUnqRefNb;
- @XmlElement(name = "SwtchRcvdDtTm")
+ @XmlElement(name = "SwtchRcvdDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar swtchRcvdDtTm;
- @XmlElement(name = "SwtchDt")
+ @XmlElement(name = "SwtchDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar swtchDt;
@XmlElement(name = "SwtchTp", required = true)
@@ -111,7 +116,7 @@ public AccountSwitchDetails1 setRtgUnqRefNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSwtchRcvdDtTm() {
@@ -123,7 +128,7 @@ public XMLGregorianCalendar getSwtchRcvdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountSwitchDetails1 setSwtchRcvdDtTm(XMLGregorianCalendar value) {
@@ -136,7 +141,7 @@ public AccountSwitchDetails1 setSwtchRcvdDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSwtchDt() {
@@ -148,7 +153,7 @@ public XMLGregorianCalendar getSwtchDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountSwitchDetails1 setSwtchDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CRSStatus1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CRSStatus1Code.java
index d4ec48186..1f0242bea 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CRSStatus1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CRSStatus1Code.java
@@ -60,7 +60,7 @@ public enum CRSStatus1Code {
C_103("C103"),
/**
- * Account holder type is a financial institution such as a depositary , a custodial institution or a specified insurance company.
+ * Account holder type is a financial institution such as a depositary, a custodial institution or a specified insurance company.
*
*/
@XmlEnumValue("C104")
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CitizenshipInformation1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CitizenshipInformation1.java
index bbefbd810..66c9c79ce 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CitizenshipInformation1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CitizenshipInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class CitizenshipInformation1 {
protected String ntlty;
@XmlElement(name = "MnrInd")
protected Boolean mnrInd;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -94,7 +98,7 @@ public CitizenshipInformation1 setMnrInd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CitizenshipInformation1 setStartDt(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public CitizenshipInformation1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CitizenshipInformation1 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CommunicationMethod2Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CommunicationMethod2Code.java
index 98c21af6f..15cbd62aa 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CommunicationMethod2Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CommunicationMethod2Code.java
@@ -35,7 +35,7 @@ public enum CommunicationMethod2Code {
EMAL,
/**
- * Transmission by fax.
+ * Transmission by Fax.
*
*/
FAXI,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ContractDocument1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ContractDocument1.java
index b2cb1327e..87f815daa 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ContractDocument1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ContractDocument1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ContractDocument1 {
@XmlElement(name = "Ref", required = true)
protected String ref;
- @XmlElement(name = "SgnOffDt")
+ @XmlElement(name = "SgnOffDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sgnOffDt;
@XmlElement(name = "Vrsn")
@@ -65,7 +68,7 @@ public ContractDocument1 setRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSgnOffDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getSgnOffDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ContractDocument1 setSgnOffDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount3.java
index a95b3d561..5b20129ae 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -71,12 +73,14 @@ public class CustomerAccount3 {
@XmlElement(name = "StmtCycl")
@XmlSchemaType(name = "string")
protected Frequency3Code stmtCycl;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsgDt;
@XmlElement(name = "Rstrctn")
protected List rstrctn;
- @XmlElement(name = "OpngDt")
+ @XmlElement(name = "OpngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar opngDt;
@@ -410,7 +414,7 @@ public CustomerAccount3 setStmtCycl(Frequency3Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -422,7 +426,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerAccount3 setClsgDt(XMLGregorianCalendar value) {
@@ -464,7 +468,7 @@ public List getRstrctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOpngDt() {
@@ -476,7 +480,7 @@ public XMLGregorianCalendar getOpngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerAccount3 setOpngDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount4.java
index a2ea6bad4..093926405 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class CustomerAccount4 {
protected BigDecimal clngNtfctnAmt;
@XmlElement(name = "StmtFrqcyAndFrmt")
protected List stmtFrqcyAndFrmt;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsgDt;
@XmlElement(name = "Rstrctn")
@@ -409,7 +412,7 @@ public List getStmtFrqcyAndFrmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -421,7 +424,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerAccount4 setClsgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount5.java
index d65a51393..e4a82962a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class CustomerAccount5 {
protected BigDecimal clngNtfctnAmt;
@XmlElement(name = "StmtFrqcyAndFrmt")
protected List stmtFrqcyAndFrmt;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsgDt;
@XmlElement(name = "Rstrctn")
@@ -413,7 +416,7 @@ public List getStmtFrqcyAndFrmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -425,7 +428,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerAccount5 setClsgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount1.java
index e516938f7..06b29af83 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndAmount1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class DateAndAmount1 {
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Amt", required = true)
@@ -37,7 +40,7 @@ public class DateAndAmount1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndAmount1 setDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateModification1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateModification1.java
index bbda22c86..346a8d38b 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateModification1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateModification1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class DateModification1 {
@XmlElement(name = "ModCd")
@XmlSchemaType(name = "string")
protected Modification1Code modCd;
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -63,7 +66,7 @@ public DateModification1 setModCd(Modification1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateModification1 setDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod2.java
index f96cd7cd5..99045fdd3 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DateTimePeriod2 {
- @XmlElement(name = "FrDtTm", required = true)
+ @XmlElement(name = "FrDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@@ -38,7 +42,7 @@ public class DateTimePeriod2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod2 setFrDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DateTimePeriod2 setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod2 setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails1.java
index 6ab1b2ee8..141548570 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class DirectDebitInstructionDetails1 {
protected PartyIdentification125 cdtr;
@XmlElement(name = "LastColltnCcyAmt")
protected ActiveOrHistoricCurrencyAndAmount lastColltnCcyAmt;
- @XmlElement(name = "LastColltnDt")
+ @XmlElement(name = "LastColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastColltnDt;
@XmlElement(name = "OthrDtls")
@@ -179,7 +182,7 @@ public DirectDebitInstructionDetails1 setLastColltnCcyAmt(ActiveOrHistoricCurren
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastColltnDt() {
@@ -191,7 +194,7 @@ public XMLGregorianCalendar getLastColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitInstructionDetails1 setLastColltnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails2.java
index 4aff231d0..8d1859df5 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitInstructionDetails2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class DirectDebitInstructionDetails2 {
protected PartyIdentification135 cdtr;
@XmlElement(name = "LastColltnCcyAmt")
protected ActiveOrHistoricCurrencyAndAmount lastColltnCcyAmt;
- @XmlElement(name = "LastColltnDt")
+ @XmlElement(name = "LastColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastColltnDt;
@XmlElement(name = "OthrDtls")
@@ -179,7 +182,7 @@ public DirectDebitInstructionDetails2 setLastColltnCcyAmt(ActiveOrHistoricCurren
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastColltnDt() {
@@ -191,7 +194,7 @@ public XMLGregorianCalendar getLastColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitInstructionDetails2 setLastColltnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EndPoint1Choice.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EndPoint1Choice.java
index 8d5362760..c2992f39c 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EndPoint1Choice.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EndPoint1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class EndPoint1Choice {
@XmlElement(name = "NbOfPmts")
protected String nbOfPmts;
- @XmlElement(name = "LastPmtDt")
+ @XmlElement(name = "LastPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastPmtDt;
@@ -62,7 +65,7 @@ public EndPoint1Choice setNbOfPmts(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastPmtDt() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getLastPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public EndPoint1Choice setLastPmtDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FATCASource1Choice.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FATCASource1Choice.java
index 95aaf36b2..eb2f79648 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FATCASource1Choice.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FATCASource1Choice.java
@@ -13,7 +13,7 @@
/**
- * Choice of formats for the source of the Foreign Account Tax Compliance Act (FATCA).
+ * Choice of formats for the source of the Foreign Account Tax Compliance Act (FATCA)
*
*
*
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FiscalYear1Choice.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FiscalYear1Choice.java
index d86a623ce..6ddaa0609 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FiscalYear1Choice.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FiscalYear1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class FiscalYear1Choice {
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -38,7 +42,7 @@ public class FiscalYear1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FiscalYear1Choice setStartDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public FiscalYear1Choice setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FiscalYear1Choice setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency1.java
index 283b9ea3a..be2d012b5 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Frequency1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class Frequency1 {
@XmlElement(name = "Seq")
protected String seq;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "EndPtChc", required = true)
@@ -72,7 +75,7 @@ public Frequency1 setSeq(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -84,7 +87,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Frequency1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundCashAccount4Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundCashAccount4Code.java
index 252b9ea04..1dfb1e8f3 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundCashAccount4Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FundCashAccount4Code.java
@@ -65,7 +65,7 @@ public enum FundCashAccount4Code {
CSDO,
/**
- * Account operated by a CSD in a direct holding market context
+ * Account operated by a CSD in a direct holding market context.
*
*/
TOFF,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GDPRData1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GDPRData1.java
index caba6037a..eb015126e 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GDPRData1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GDPRData1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class GDPRData1 {
protected GDPRDataConsent1Choice cnsntTp;
@XmlElement(name = "CnsntInd")
protected boolean cnsntInd;
- @XmlElement(name = "CnsntDt", required = true)
+ @XmlElement(name = "CnsntDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cnsntDt;
@@ -82,7 +85,7 @@ public GDPRData1 setCnsntInd(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCnsntDt() {
@@ -94,7 +97,7 @@ public XMLGregorianCalendar getCnsntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GDPRData1 setCnsntDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification44.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification44.java
index fbfbe4ced..c3ec47ef7 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification44.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification44.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,10 +37,12 @@ public class GenericIdentification44 {
protected OtherIdentification1Choice tp;
@XmlElement(name = "Issr")
protected String issr;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@@ -122,7 +126,7 @@ public GenericIdentification44 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -134,7 +138,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification44 setIsseDt(XMLGregorianCalendar value) {
@@ -147,7 +151,7 @@ public GenericIdentification44 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -159,7 +163,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification44 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification55.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification55.java
index f6b6e29e3..200760e8a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification55.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification55.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +38,12 @@ public class GenericIdentification55 {
protected OtherIdentification2Choice tp;
@XmlElement(name = "Issr")
protected String issr;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "IssrCtry")
@@ -125,7 +129,7 @@ public GenericIdentification55 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -137,7 +141,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification55 setIsseDt(XMLGregorianCalendar value) {
@@ -150,7 +154,7 @@ public GenericIdentification55 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -162,7 +166,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification55 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification82.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification82.java
index 4361f4fa4..b88f6cbb2 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification82.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification82.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,10 +39,12 @@ public class GenericIdentification82 {
protected OtherIdentification3Choice tp;
@XmlElement(name = "Issr")
protected String issr;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "Stat")
@@ -128,7 +132,7 @@ public GenericIdentification82 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -140,7 +144,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification82 setIsseDt(XMLGregorianCalendar value) {
@@ -153,7 +157,7 @@ public GenericIdentification82 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -165,7 +169,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification82 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification9.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification9.java
index 959e40c7a..e08c0f683 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification9.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GenericIdentification9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,10 +41,12 @@ public class GenericIdentification9 {
protected String xtndedIdTp;
@XmlElement(name = "Issr")
protected String issr;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@@ -151,7 +155,7 @@ public GenericIdentification9 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -163,7 +167,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification9 setIsseDt(XMLGregorianCalendar value) {
@@ -176,7 +180,7 @@ public GenericIdentification9 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -188,7 +192,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GenericIdentification9 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HighFrequencyTradingProfile1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HighFrequencyTradingProfile1.java
index bf63aa49d..b9c0f0970 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HighFrequencyTradingProfile1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/HighFrequencyTradingProfile1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class HighFrequencyTradingProfile1 {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SttlmFrqcy")
@@ -40,7 +43,7 @@ public class HighFrequencyTradingProfile1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public HighFrequencyTradingProfile1 setDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment1.java
index 3ba0a05be..e7d4e00d4 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class IdentificationAssignment1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Cretr")
@@ -71,7 +74,7 @@ public IdentificationAssignment1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IdentificationAssignment1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment2.java
index 371aaa48c..a11185628 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IdentificationAssignment2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class IdentificationAssignment2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Cretr")
@@ -74,7 +77,7 @@ public IdentificationAssignment2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IdentificationAssignment2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson10.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson10.java
index 43486d34a..7ef34dc02 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson10.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class IndividualPerson10 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -301,7 +304,7 @@ public IndividualPerson10 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -313,7 +316,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson10 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson11.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson11.java
index 4342a376a..4c2d933dc 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson11.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class IndividualPerson11 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -301,7 +304,7 @@ public IndividualPerson11 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -313,7 +316,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson11 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson19.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson19.java
index 31804226d..cef8d44ee 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson19.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson19.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class IndividualPerson19 {
protected Gender1Code gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -189,7 +192,7 @@ public IndividualPerson19 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -201,7 +204,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson19 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson20.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson20.java
index 2d7250982..376cbcb7f 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson20.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson20.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class IndividualPerson20 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -275,7 +278,7 @@ public IndividualPerson20 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson20 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson21.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson21.java
index b8e62d008..5e5478a79 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson21.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson21.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson21 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -278,7 +281,7 @@ public IndividualPerson21 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson21 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson22.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson22.java
index 0bf712367..2684e9715 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson22.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson22.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson22 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -278,7 +281,7 @@ public IndividualPerson22 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson22 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson23.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson23.java
index 5aee636fa..df182a3e2 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson23.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson23.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson23 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -278,7 +281,7 @@ public IndividualPerson23 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson23 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson24.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson24.java
index f596feb60..795004119 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson24.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson24.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson24 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -278,7 +281,7 @@ public IndividualPerson24 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson24 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson27.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson27.java
index 6ae5b330c..03e9ce175 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson27.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson27.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class IndividualPerson27 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected GenderCode gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -80,7 +83,8 @@ public class IndividualPerson27 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsnTp")
protected PoliticalExposureType1Choice pltclyXpsdPrsnTp;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -245,7 +249,7 @@ public IndividualPerson27 setGndr(GenderCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -257,7 +261,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson27 setBirthDt(XMLGregorianCalendar value) {
@@ -503,7 +507,7 @@ public IndividualPerson27 setPltclyXpsdPrsnTp(PoliticalExposureType1Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -515,7 +519,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson27 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson28.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson28.java
index f4e216dc8..134396291 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson28.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson28.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class IndividualPerson28 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected GenderCode gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -80,7 +83,8 @@ public class IndividualPerson28 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsnTp")
protected PoliticalExposureType1Choice pltclyXpsdPrsnTp;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -245,7 +249,7 @@ public IndividualPerson28 setGndr(GenderCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -257,7 +261,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson28 setBirthDt(XMLGregorianCalendar value) {
@@ -503,7 +507,7 @@ public IndividualPerson28 setPltclyXpsdPrsnTp(PoliticalExposureType1Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -515,7 +519,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson28 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson30.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson30.java
index c0ab40a49..0346e4030 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson30.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson30.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class IndividualPerson30 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected GenderCode gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@@ -147,7 +150,7 @@ public IndividualPerson30 setGndr(GenderCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson30 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson33.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson33.java
index fee7b6e7c..5b512f791 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson33.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson33.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class IndividualPerson33 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected Gender1Code gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -80,7 +83,8 @@ public class IndividualPerson33 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsnTp")
protected PoliticalExposureType1Choice pltclyXpsdPrsnTp;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -245,7 +249,7 @@ public IndividualPerson33 setGndr(Gender1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -257,7 +261,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson33 setBirthDt(XMLGregorianCalendar value) {
@@ -503,7 +507,7 @@ public IndividualPerson33 setPltclyXpsdPrsnTp(PoliticalExposureType1Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -515,7 +519,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson33 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson34.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson34.java
index b9e271ac8..d99b80377 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson34.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson34.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class IndividualPerson34 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected Gender1Code gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -80,7 +83,8 @@ public class IndividualPerson34 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsnTp")
protected PoliticalExposureType1Choice pltclyXpsdPrsnTp;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -245,7 +249,7 @@ public IndividualPerson34 setGndr(Gender1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -257,7 +261,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson34 setBirthDt(XMLGregorianCalendar value) {
@@ -503,7 +507,7 @@ public IndividualPerson34 setPltclyXpsdPrsnTp(PoliticalExposureType1Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -515,7 +519,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson34 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson35.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson35.java
index 8fe23a434..e11ec3875 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson35.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson35.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class IndividualPerson35 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected Gender1Code gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@@ -147,7 +150,7 @@ public IndividualPerson35 setGndr(Gender1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson35 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson36.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson36.java
index f02e4ad66..c39bed593 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson36.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson36.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class IndividualPerson36 {
protected Gender1Code gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -189,7 +192,7 @@ public IndividualPerson36 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -201,7 +204,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson36 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson37.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson37.java
index d582bd1af..d97fd2997 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson37.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson37.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class IndividualPerson37 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected Gender1Code gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -81,7 +84,8 @@ public class IndividualPerson37 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsn")
protected PoliticallyExposedPerson1 pltclyXpsdPrsn;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -248,7 +252,7 @@ public IndividualPerson37 setGndr(Gender1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -260,7 +264,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson37 setBirthDt(XMLGregorianCalendar value) {
@@ -506,7 +510,7 @@ public IndividualPerson37 setPltclyXpsdPrsn(PoliticallyExposedPerson1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -518,7 +522,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson37 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson38.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson38.java
index 43901812f..cc12d7fe9 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson38.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson38.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class IndividualPerson38 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected Gender1Code gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -81,7 +84,8 @@ public class IndividualPerson38 {
protected String bizFctn;
@XmlElement(name = "PltclyXpsdPrsn")
protected PoliticallyExposedPerson1 pltclyXpsdPrsn;
- @XmlElement(name = "DthDt")
+ @XmlElement(name = "DthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dthDt;
@XmlElement(name = "CvlSts")
@@ -248,7 +252,7 @@ public IndividualPerson38 setGndr(Gender1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -260,7 +264,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson38 setBirthDt(XMLGregorianCalendar value) {
@@ -506,7 +510,7 @@ public IndividualPerson38 setPltclyXpsdPrsn(PoliticallyExposedPerson1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDthDt() {
@@ -518,7 +522,7 @@ public XMLGregorianCalendar getDthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson38 setDthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson4.java
index bd0eba19f..78c0b13f0 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class IndividualPerson4 {
@XmlElement(name = "Gndr")
@XmlSchemaType(name = "string")
protected GenderCode gndr;
- @XmlElement(name = "BirthDt")
+ @XmlElement(name = "BirthDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@@ -147,7 +150,7 @@ public IndividualPerson4 setGndr(GenderCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson4 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson5.java
index 85526863e..defc1c4af 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson5 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -295,7 +298,7 @@ public IndividualPerson5 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -307,7 +310,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson5 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson6.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson6.java
index 2d5380825..b3197e5f8 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson6.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPerson6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class IndividualPerson6 {
protected GenderCode gndr;
@XmlElement(name = "Lang")
protected String lang;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryOfBirth")
@@ -295,7 +298,7 @@ public IndividualPerson6 setLang(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -307,7 +310,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPerson6 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong1.java
index b58287672..05f159350 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class IndividualPersonNameLong1 {
protected String nmSfx;
@XmlElement(name = "Nm")
protected String nm;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -234,7 +238,7 @@ public IndividualPersonNameLong1 setNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -246,7 +250,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPersonNameLong1 setStartDt(XMLGregorianCalendar value) {
@@ -259,7 +263,7 @@ public IndividualPersonNameLong1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -271,7 +275,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPersonNameLong1 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong2.java
index 6ee1d63ec..a96c032a5 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IndividualPersonNameLong2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,10 +50,12 @@ public class IndividualPersonNameLong2 {
protected String nmSfx;
@XmlElement(name = "Nm")
protected String nm;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -235,7 +239,7 @@ public IndividualPersonNameLong2 setNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -247,7 +251,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPersonNameLong2 setStartDt(XMLGregorianCalendar value) {
@@ -260,7 +264,7 @@ public IndividualPersonNameLong2 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -272,7 +276,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IndividualPersonNameLong2 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Insurance1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Insurance1Code.java
index a06db688b..ddd93c558 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Insurance1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Insurance1Code.java
@@ -26,7 +26,7 @@ public enum Insurance1Code {
/**
- * Life insurance
+ * Life insurance.
*
*/
LIFE,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceType2Choice.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceType2Choice.java
index 206417f0e..440a4ee71 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceType2Choice.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InsuranceType2Choice.java
@@ -13,7 +13,7 @@
/**
- * Choice of formats for the specification of the type of insurance.
+ * Choice of formats for the specification of the type of insurance.
*
*
*
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation14.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation14.java
index 4873767a5..a73cc1eeb 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation14.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation14.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,14 +82,16 @@ public class InvestmentAccountOwnershipInformation14 {
protected List fatcaFormTp;
@XmlElement(name = "FATCASts")
protected List fatcaSts;
- @XmlElement(name = "FATCARptgDt")
+ @XmlElement(name = "FATCARptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fatcaRptgDt;
@XmlElement(name = "CRSFormTp")
protected List crsFormTp;
@XmlElement(name = "CRSSts")
protected List crsSts;
- @XmlElement(name = "CRSRptgDt")
+ @XmlElement(name = "CRSRptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar crsRptgDt;
@XmlElement(name = "OthrId")
@@ -421,7 +425,7 @@ public List getFATCASts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFATCARptgDt() {
@@ -433,7 +437,7 @@ public XMLGregorianCalendar getFATCARptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation14 setFATCARptgDt(XMLGregorianCalendar value) {
@@ -504,7 +508,7 @@ public List getCRSSts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCRSRptgDt() {
@@ -516,7 +520,7 @@ public XMLGregorianCalendar getCRSRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation14 setCRSRptgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation15.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation15.java
index 4667f3f1b..7772a76cb 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation15.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation15.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,14 +82,16 @@ public class InvestmentAccountOwnershipInformation15 {
protected List fatcaFormTp;
@XmlElement(name = "FATCASts")
protected List fatcaSts;
- @XmlElement(name = "FATCARptgDt")
+ @XmlElement(name = "FATCARptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fatcaRptgDt;
@XmlElement(name = "CRSFormTp")
protected List crsFormTp;
@XmlElement(name = "CRSSts")
protected List crsSts;
- @XmlElement(name = "CRSRptgDt")
+ @XmlElement(name = "CRSRptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar crsRptgDt;
@XmlElement(name = "OthrId")
@@ -421,7 +425,7 @@ public List getFATCASts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFATCARptgDt() {
@@ -433,7 +437,7 @@ public XMLGregorianCalendar getFATCARptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation15 setFATCARptgDt(XMLGregorianCalendar value) {
@@ -504,7 +508,7 @@ public List getCRSSts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCRSRptgDt() {
@@ -516,7 +520,7 @@ public XMLGregorianCalendar getCRSRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation15 setCRSRptgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation16.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation16.java
index 5a8f51ca6..6b70e0b36 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation16.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation16.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,14 +82,16 @@ public class InvestmentAccountOwnershipInformation16 {
protected List fatcaFormTp;
@XmlElement(name = "FATCASts")
protected List fatcaSts;
- @XmlElement(name = "FATCARptgDt")
+ @XmlElement(name = "FATCARptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fatcaRptgDt;
@XmlElement(name = "CRSFormTp")
protected List crsFormTp;
@XmlElement(name = "CRSSts")
protected List crsSts;
- @XmlElement(name = "CRSRptgDt")
+ @XmlElement(name = "CRSRptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar crsRptgDt;
@XmlElement(name = "OthrId")
@@ -421,7 +425,7 @@ public List getFATCASts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFATCARptgDt() {
@@ -433,7 +437,7 @@ public XMLGregorianCalendar getFATCARptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation16 setFATCARptgDt(XMLGregorianCalendar value) {
@@ -504,7 +508,7 @@ public List getCRSSts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCRSRptgDt() {
@@ -516,7 +520,7 @@ public XMLGregorianCalendar getCRSRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation16 setCRSRptgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation17.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation17.java
index 746ef63bf..9ff2bdc07 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation17.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentAccountOwnershipInformation17.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,14 +82,16 @@ public class InvestmentAccountOwnershipInformation17 {
protected List fatcaFormTp;
@XmlElement(name = "FATCASts")
protected List fatcaSts;
- @XmlElement(name = "FATCARptgDt")
+ @XmlElement(name = "FATCARptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fatcaRptgDt;
@XmlElement(name = "CRSFormTp")
protected List crsFormTp;
@XmlElement(name = "CRSSts")
protected List crsSts;
- @XmlElement(name = "CRSRptgDt")
+ @XmlElement(name = "CRSRptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar crsRptgDt;
@XmlElement(name = "OthrId")
@@ -421,7 +425,7 @@ public List getFATCASts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFATCARptgDt() {
@@ -433,7 +437,7 @@ public XMLGregorianCalendar getFATCARptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation17 setFATCARptgDt(XMLGregorianCalendar value) {
@@ -504,7 +508,7 @@ public List getCRSSts() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCRSRptgDt() {
@@ -516,7 +520,7 @@ public XMLGregorianCalendar getCRSRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentAccountOwnershipInformation17 setCRSRptgDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole6Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole6Code.java
index d51251a90..acc33096c 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole6Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole6Code.java
@@ -114,7 +114,7 @@ public enum InvestmentFundRole6Code {
INTR,
/**
- * Party that implements the investment strategy, that is, selects portfolio investments in accordance with the objectives and strategy in the fund's prospectus, and places orders to effect or liquidate selected investments in accordance with net flow of capital into or out of the fund.
+ * Party that implements the investment strategy, ie, selects portfolio investments in accordance with the objectives and strategy in the fund's prospectus, and places orders to effect or liquidate selected investments in accordance with net flow of capital into or out of the fund.
*
*/
INVE,
@@ -126,7 +126,7 @@ public enum InvestmentFundRole6Code {
INVS,
/**
- * Agent that executes the payment. In the context of the investment fund industry, the paying agent is the local legal representative of the fund. It may pay out dividends, and collects money for the purchase of funds when a client deals directly with the fund and/or when a client deals with bearer shares. It pays out the redemption of the fund, may distribute information about the fund, and provides legal information about the fund.
+ * Agent that executes the payment. In the context of the investment fund industry, the paying agent is the local legal representative of the fund. It may pay out dividends, and collects money for the purchase of funds when a client deals directly with the fund and/or when a client deals with bearer shares. It pays out the redemption of the fund, may distribute information about the fund, and provides legal information about the fund.
*
*/
PAYI,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole7Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole7Code.java
index b9c1dffb9..c4ff25f92 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole7Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole7Code.java
@@ -59,7 +59,7 @@ public enum InvestmentFundRole7Code {
INTR,
/**
- * Agent that executes the payment. In the context of the investment fund industry, the paying agent is the local legal representative of the fund. It may pay out dividends, and collects money for the purchase of funds when a client deals directly with the fund and/or when a client deals with bearer shares. It pays out the redemption of the fund, may distribute information about the fund, and provides legal information about the fund.
+ * Agent that executes the payment. In the context of the investment fund industry, the paying agent is the local legal representative of the fund. It may pay out dividends, and collects money for the purchase of funds when a client deals directly with the fund and/or when a client deals with bearer shares. It pays out the redemption of the fund, may distribute information about the fund, and provides legal information about the fund.
*
*/
PAYI,
@@ -89,7 +89,7 @@ public enum InvestmentFundRole7Code {
FACT,
/**
- * Party that implements the investment strategy, ie, selects portfolio investments in accordance with the objectives and strategy in the fund's prospectus, and places orders to effect or liquidate selected investments in accordance with net flow of capital into or out of the fund.
+ * Party that implements the investment strategy, that is, selects portfolio investments in accordance with the objectives and strategy in the fund's prospectus, and places orders to effect or liquidate selected investments in accordance with net flow of capital into or out of the fund.
*
*/
INVE,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransactionType1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransactionType1Code.java
index 0fcfe1de3..7d56e0952 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransactionType1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundTransactionType1Code.java
@@ -136,7 +136,7 @@ public enum InvestmentFundTransactionType1Code {
DIVI,
/**
- * Transaction is an InSpecie.
+ * Transaction is an InSpecie
*
*/
INSP,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan10.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan10.java
index fe45b5d25..161ceac2d 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan10.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan10 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan10 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan10 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan10 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan10 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan11.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan11.java
index 6a0c9e932..902953ebe 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan11.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan11.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan11 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan11 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan11 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan11 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan11 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan12.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan12.java
index 51baf33e8..fa823c7da 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan12.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan12 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan12 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan12 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan12 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan12 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan13.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan13.java
index 66a6c9bbe..2a6ffe1ca 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan13.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan13.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan13 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan13 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan13 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan13 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan13 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan14.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan14.java
index 469806373..c6fd86619 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan14.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan14 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan14 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan14 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan14 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan14 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan15.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan15.java
index a376160aa..65693af67 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan15.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan15 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan15 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan15 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan15 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan15 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan16.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan16.java
index b7a8f6c35..857718fce 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan16.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan16.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan16 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan16 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan16 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan16 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan16 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan17.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan17.java
index c58e47c7b..8fc71ce97 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan17.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +49,12 @@ public class InvestmentPlan17 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -116,7 +120,7 @@ public InvestmentPlan17 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -128,7 +132,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan17 setStartDt(XMLGregorianCalendar value) {
@@ -141,7 +145,7 @@ public InvestmentPlan17 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -153,7 +157,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan17 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan2.java
index 163b891d3..a86a9a85a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class InvestmentPlan2 {
protected Frequency1Code frqcy;
@XmlElement(name = "XtndedFrqcy")
protected String xtndedFrqcy;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Amt", required = true)
@@ -118,7 +122,7 @@ public InvestmentPlan2 setXtndedFrqcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -130,7 +134,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan2 setStartDt(XMLGregorianCalendar value) {
@@ -143,7 +147,7 @@ public InvestmentPlan2 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -155,7 +159,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan2 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan3.java
index 8567a3716..0a8776b97 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,10 +45,12 @@ public class InvestmentPlan3 {
protected Frequency1Code frqcy;
@XmlElement(name = "XtndedFrqcy")
protected String xtndedFrqcy;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Amt", required = true)
@@ -120,7 +124,7 @@ public InvestmentPlan3 setXtndedFrqcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -132,7 +136,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan3 setStartDt(XMLGregorianCalendar value) {
@@ -145,7 +149,7 @@ public InvestmentPlan3 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -157,7 +161,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan3 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan4.java
index 3d11b9be3..d1d56a899 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,10 +46,12 @@ public class InvestmentPlan4 {
protected EventFrequency1Code frqcy;
@XmlElement(name = "XtndedFrqcy")
protected String xtndedFrqcy;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Amt", required = true)
@@ -124,7 +128,7 @@ public InvestmentPlan4 setXtndedFrqcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -136,7 +140,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan4 setStartDt(XMLGregorianCalendar value) {
@@ -149,7 +153,7 @@ public InvestmentPlan4 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan4 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan5.java
index 7474c6bdc..fd1cf2e5a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,10 +46,12 @@ public class InvestmentPlan5 {
protected EventFrequency1Code frqcy;
@XmlElement(name = "XtndedFrqcy")
protected String xtndedFrqcy;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Amt", required = true)
@@ -124,7 +128,7 @@ public InvestmentPlan5 setXtndedFrqcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -136,7 +140,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan5 setStartDt(XMLGregorianCalendar value) {
@@ -149,7 +153,7 @@ public InvestmentPlan5 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan5 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan6.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan6.java
index e156d29c1..36b386ddc 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan6.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class InvestmentPlan6 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency19Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -110,7 +114,7 @@ public InvestmentPlan6 setFrqcy(Frequency19Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -122,7 +126,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan6 setStartDt(XMLGregorianCalendar value) {
@@ -135,7 +139,7 @@ public InvestmentPlan6 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -147,7 +151,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan6 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan7.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan7.java
index b37b5ca37..4c9971093 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan7.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan7.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class InvestmentPlan7 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency19Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -110,7 +114,7 @@ public InvestmentPlan7 setFrqcy(Frequency19Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -122,7 +126,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan7 setStartDt(XMLGregorianCalendar value) {
@@ -135,7 +139,7 @@ public InvestmentPlan7 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -147,7 +151,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan7 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan8.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan8.java
index bef71f58a..59ebaec33 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan8.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class InvestmentPlan8 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -110,7 +114,7 @@ public InvestmentPlan8 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -122,7 +126,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan8 setStartDt(XMLGregorianCalendar value) {
@@ -135,7 +139,7 @@ public InvestmentPlan8 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -147,7 +151,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan8 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan9.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan9.java
index f684ce87c..c68229cd3 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan9.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentPlan9.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class InvestmentPlan9 {
@XmlElement(name = "Frqcy", required = true)
protected Frequency20Choice frqcy;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Qty", required = true)
@@ -110,7 +114,7 @@ public InvestmentPlan9 setFrqcy(Frequency20Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -122,7 +126,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan9 setStartDt(XMLGregorianCalendar value) {
@@ -135,7 +139,7 @@ public InvestmentPlan9 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -147,7 +151,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvestmentPlan9 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/KnowYourCustomerCheckType1Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/KnowYourCustomerCheckType1Code.java
index 35dd9bf57..956ea6aca 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/KnowYourCustomerCheckType1Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/KnowYourCustomerCheckType1Code.java
@@ -27,7 +27,7 @@ public enum KnowYourCustomerCheckType1Code {
/**
- * Enhanced check, typically carried out on accounts that are considered high risk.
+ * Enhanced check, typically carried out on accounts that are considered high risk.
*
*/
ENHA,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LetterIntent1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LetterIntent1.java
index 4f8c15851..e3e56c648 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LetterIntent1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LetterIntent1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class LetterIntent1 {
protected String lttrInttRef;
@XmlElement(name = "Amt")
protected ActiveCurrencyAnd13DecimalAmount amt;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -94,7 +98,7 @@ public LetterIntent1 setAmt(ActiveCurrencyAnd13DecimalAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LetterIntent1 setStartDt(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public LetterIntent1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LetterIntent1 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification4.java
index b9263ecaf..282aa8cae 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class MessageIdentification4 {
@XmlElement(name = "MsgId")
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -62,7 +65,7 @@ public MessageIdentification4 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageIdentification4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification5.java
index 3f5ad550e..20f6c406b 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MessageIdentification5 {
@XmlElement(name = "MsgId")
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrstAgt")
@@ -65,7 +68,7 @@ public MessageIdentification5 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageIdentification5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate1.java
index b00d3d804..612caec00 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,10 +45,12 @@ public class OperationMandate1 {
protected List mndtHldr;
@XmlElement(name = "BkOpr", required = true)
protected List bkOpr;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -180,7 +184,7 @@ public List getBkOpr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -192,7 +196,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate1 setStartDt(XMLGregorianCalendar value) {
@@ -205,7 +209,7 @@ public OperationMandate1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -217,7 +221,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate1 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate2.java
index 47b98819f..767c94fc5 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class OperationMandate2 {
protected List mndtHldr;
@XmlElement(name = "BkOpr", required = true)
protected List bkOpr;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -212,7 +216,7 @@ public List getBkOpr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate2 setStartDt(XMLGregorianCalendar value) {
@@ -237,7 +241,7 @@ public OperationMandate2 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -249,7 +253,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate2 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate3.java
index 9ba98323e..854b57819 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OperationMandate3 {
protected List mndtHldr;
@XmlElement(name = "BkOpr", required = true)
protected List bkOpr;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -241,7 +245,7 @@ public List getBkOpr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate3 setStartDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public OperationMandate3 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate3 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate4.java
index fdfc8103a..c71a5ee9f 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class OperationMandate4 {
protected List mndtHldr;
@XmlElement(name = "BkOpr", required = true)
protected List bkOpr;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -212,7 +216,7 @@ public List getBkOpr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate4 setStartDt(XMLGregorianCalendar value) {
@@ -237,7 +241,7 @@ public OperationMandate4 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -249,7 +253,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate4 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate5.java
index 2de19ca6f..6942aea77 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OperationMandate5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OperationMandate5 {
protected List mndtHldr;
@XmlElement(name = "BkOpr", required = true)
protected List bkOpr;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@@ -241,7 +245,7 @@ public List getBkOpr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate5 setStartDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public OperationMandate5 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OperationMandate5 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation12.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation12.java
index 99f7ea974..12137b5d4 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation12.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation12.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class Organisation12 {
protected String tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -150,7 +153,7 @@ public Organisation12 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -162,7 +165,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation12 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation13.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation13.java
index d2bc59829..f49b02455 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation13.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation13 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxIdNb")
@@ -194,7 +197,7 @@ public Organisation13 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -206,7 +209,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation13 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation15.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation15.java
index 0a52e5400..cf6693346 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation15.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation15.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation15 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxIdNb")
@@ -194,7 +197,7 @@ public Organisation15 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -206,7 +209,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation15 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation16.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation16.java
index 91ef9b1b1..dcc74618b 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation16.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation16.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation16 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxId")
@@ -194,7 +197,7 @@ public Organisation16 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -206,7 +209,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation16 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation17.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation17.java
index 731ac64a0..16f58c176 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation17.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation17.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation17 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxId")
@@ -194,7 +197,7 @@ public Organisation17 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -206,7 +209,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation17 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation2.java
index c6d12a273..92beb90fe 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class Organisation2 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxIdNb")
@@ -191,7 +194,7 @@ public Organisation2 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -203,7 +206,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation2 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation20.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation20.java
index a1f20626a..adccf1745 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation20.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation20.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,14 +53,16 @@ public class Organisation20 {
@XmlElement(name = "OrgLglSts")
@XmlSchemaType(name = "string")
protected OrganisationLegalStatus1Code orgLglSts;
- @XmlElement(name = "EstblishdDt")
+ @XmlElement(name = "EstblishdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar estblishdDt;
@XmlElement(name = "RegnNb")
protected String regnNb;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxtnIdNb")
@@ -164,7 +168,7 @@ public Organisation20 setOrgLglSts(OrganisationLegalStatus1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEstblishdDt() {
@@ -176,7 +180,7 @@ public XMLGregorianCalendar getEstblishdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation20 setEstblishdDt(XMLGregorianCalendar value) {
@@ -239,7 +243,7 @@ public Organisation20 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -251,7 +255,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation20 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation22.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation22.java
index 4acd6b3ed..2f037b44e 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation22.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation22.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class Organisation22 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "ModfdPstlAdr")
@@ -210,7 +213,7 @@ public Organisation22 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -222,7 +225,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation22 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation24.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation24.java
index 606d0a1c8..cd022e006 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation24.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation24.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class Organisation24 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "PstlAdr", required = true)
@@ -210,7 +213,7 @@ public Organisation24 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -222,7 +225,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation24 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation29.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation29.java
index b3baaf09e..362d55691 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation29.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation29.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation29 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "ModfdPstlAdr")
@@ -213,7 +216,7 @@ public Organisation29 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation29 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation3.java
index 3706a9b7b..915c57a28 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class Organisation3 {
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxIdNb")
@@ -191,7 +194,7 @@ public Organisation3 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -203,7 +206,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation3 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation30.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation30.java
index 8a4175f00..1711ff11c 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation30.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation30.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation30 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "PstlAdr")
@@ -213,7 +216,7 @@ public Organisation30 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation30 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation33.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation33.java
index c95a0b51f..71924109c 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation33.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation33.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class Organisation33 {
protected String tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -150,7 +153,7 @@ public Organisation33 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -162,7 +165,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation33 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation35.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation35.java
index 4a3621174..9481a8b42 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation35.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation35.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,14 +53,16 @@ public class Organisation35 {
@XmlElement(name = "OrgLglSts")
@XmlSchemaType(name = "string")
protected OrganisationLegalStatus1Code orgLglSts;
- @XmlElement(name = "EstblishdDt")
+ @XmlElement(name = "EstblishdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar estblishdDt;
@XmlElement(name = "RegnNb")
protected String regnNb;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxtnIdNb")
@@ -164,7 +168,7 @@ public Organisation35 setOrgLglSts(OrganisationLegalStatus1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEstblishdDt() {
@@ -176,7 +180,7 @@ public XMLGregorianCalendar getEstblishdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation35 setEstblishdDt(XMLGregorianCalendar value) {
@@ -239,7 +243,7 @@ public Organisation35 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -251,7 +255,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation35 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation39.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation39.java
index 65156e6e4..838e2e570 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation39.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation39.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation39 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "PstlAdr")
@@ -213,7 +216,7 @@ public Organisation39 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation39 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation40.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation40.java
index 4ceb2c7e9..02d827295 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation40.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation40.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class Organisation40 {
protected String purp;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "ModfdPstlAdr")
@@ -213,7 +216,7 @@ public Organisation40 setRegnCtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation40 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation6.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation6.java
index 3540c3160..09f54635a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation6.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Organisation6 {
protected String tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -144,7 +147,7 @@ public Organisation6 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -156,7 +159,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation6 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation7.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation7.java
index 8cd4aaf58..50d188fa1 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation7.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Organisation7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Organisation7 {
protected String tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt", required = true)
+ @XmlElement(name = "RegnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -144,7 +147,7 @@ public Organisation7 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -156,7 +159,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Organisation7 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification1.java
index c188a0e4f..f437ffc77 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OrganisationModification1 {
protected TradingNameModification1 tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -150,7 +153,7 @@ public OrganisationModification1 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -162,7 +165,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OrganisationModification1 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification2.java
index fcd196efb..b2e92cae3 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OrganisationModification2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OrganisationModification2 {
protected TradingNameModification1 tradgNm;
@XmlElement(name = "CtryOfOpr", required = true)
protected String ctryOfOpr;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "OprlAdr")
@@ -150,7 +153,7 @@ public OrganisationModification2 setCtryOfOpr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -162,7 +165,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OrganisationModification2 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference14.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference14.java
index e1bbec79e..3da602caf 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference14.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference14.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalTransactionReference14 {
protected String msgId;
@XmlElement(name = "MsgNmId")
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "OrgnlTx")
@@ -95,7 +98,7 @@ public OriginalTransactionReference14 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference14 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference18.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference18.java
index fa2e0a556..65ad21706 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference18.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference18.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalTransactionReference18 {
protected String msgId;
@XmlElement(name = "MsgNmId")
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "OrgnlTx")
@@ -95,7 +98,7 @@ public OriginalTransactionReference18 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference18 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OwnershipBeneficiaryRate1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OwnershipBeneficiaryRate1.java
index 25ac1e90d..b27d96db2 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OwnershipBeneficiaryRate1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OwnershipBeneficiaryRate1.java
@@ -13,7 +13,7 @@
/**
- * Percentage of ownership or of beneficial ownership of the shares/units in the account.
+ * Percentage of ownership or of beneficial ownership of the shares/units in the account.
*
*
*
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation1.java
index e2b225ae8..a5a828768 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,13 +50,15 @@ public class PartyProfileInformation1 {
protected CertificateType1Code certTp;
@XmlElement(name = "XtndedCertTp")
protected String xtndedCertTp;
- @XmlElement(name = "ChckngDt")
+ @XmlElement(name = "ChckngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chckngDt;
@XmlElement(name = "ChckngFrqcy")
@XmlSchemaType(name = "string")
protected EventFrequency1Code chckngFrqcy;
- @XmlElement(name = "NxtRvsnDt")
+ @XmlElement(name = "NxtRvsnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRvsnDt;
@XmlElement(name = "SlryRg")
@@ -209,7 +213,7 @@ public PartyProfileInformation1 setXtndedCertTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChckngDt() {
@@ -221,7 +225,7 @@ public XMLGregorianCalendar getChckngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation1 setChckngDt(XMLGregorianCalendar value) {
@@ -259,7 +263,7 @@ public PartyProfileInformation1 setChckngFrqcy(EventFrequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRvsnDt() {
@@ -271,7 +275,7 @@ public XMLGregorianCalendar getNxtRvsnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation1 setNxtRvsnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation2.java
index 892245893..010471f65 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,13 +48,15 @@ public class PartyProfileInformation2 {
protected String rspnsblPty;
@XmlElement(name = "CertTp", required = true)
protected CertificationType1Choice certTp;
- @XmlElement(name = "ChckngDt")
+ @XmlElement(name = "ChckngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chckngDt;
@XmlElement(name = "ChckngFrqcy")
@XmlSchemaType(name = "string")
protected EventFrequency1Code chckngFrqcy;
- @XmlElement(name = "NxtRvsnDt")
+ @XmlElement(name = "NxtRvsnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRvsnDt;
@XmlElement(name = "SlryRg")
@@ -186,7 +190,7 @@ public PartyProfileInformation2 setCertTp(CertificationType1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChckngDt() {
@@ -198,7 +202,7 @@ public XMLGregorianCalendar getChckngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation2 setChckngDt(XMLGregorianCalendar value) {
@@ -236,7 +240,7 @@ public PartyProfileInformation2 setChckngFrqcy(EventFrequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRvsnDt() {
@@ -248,7 +252,7 @@ public XMLGregorianCalendar getNxtRvsnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation2 setNxtRvsnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation3.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation3.java
index 974e8982b..a632a4bae 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation3.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,13 +49,15 @@ public class PartyProfileInformation3 {
protected String rspnsblPty;
@XmlElement(name = "CertTp")
protected CertificationType1Choice certTp;
- @XmlElement(name = "ChckngDt")
+ @XmlElement(name = "ChckngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chckngDt;
@XmlElement(name = "ChckngFrqcy")
@XmlSchemaType(name = "string")
protected EventFrequency1Code chckngFrqcy;
- @XmlElement(name = "NxtRvsnDt")
+ @XmlElement(name = "NxtRvsnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRvsnDt;
@XmlElement(name = "SlryRg")
@@ -197,7 +201,7 @@ public PartyProfileInformation3 setCertTp(CertificationType1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChckngDt() {
@@ -209,7 +213,7 @@ public XMLGregorianCalendar getChckngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation3 setChckngDt(XMLGregorianCalendar value) {
@@ -247,7 +251,7 @@ public PartyProfileInformation3 setChckngFrqcy(EventFrequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRvsnDt() {
@@ -259,7 +263,7 @@ public XMLGregorianCalendar getNxtRvsnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation3 setNxtRvsnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation4.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation4.java
index 1c5c7ee24..25ddfe0cf 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation4.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,13 +50,15 @@ public class PartyProfileInformation4 {
protected String rspnsblPty;
@XmlElement(name = "CertTp")
protected CertificationType1Choice certTp;
- @XmlElement(name = "ChckngDt")
+ @XmlElement(name = "ChckngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chckngDt;
@XmlElement(name = "ChckngFrqcy")
@XmlSchemaType(name = "string")
protected EventFrequency1Code chckngFrqcy;
- @XmlElement(name = "NxtRvsnDt")
+ @XmlElement(name = "NxtRvsnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRvsnDt;
@XmlElement(name = "SlryRg")
@@ -200,7 +204,7 @@ public PartyProfileInformation4 setCertTp(CertificationType1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChckngDt() {
@@ -212,7 +216,7 @@ public XMLGregorianCalendar getChckngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation4 setChckngDt(XMLGregorianCalendar value) {
@@ -250,7 +254,7 @@ public PartyProfileInformation4 setChckngFrqcy(EventFrequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRvsnDt() {
@@ -262,7 +266,7 @@ public XMLGregorianCalendar getNxtRvsnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation4 setNxtRvsnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation5.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation5.java
index d2bb711c0..d2cc5598c 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation5.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyProfileInformation5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,13 +50,15 @@ public class PartyProfileInformation5 {
protected String rspnsblPty;
@XmlElement(name = "CertTp")
protected CertificationType1Choice certTp;
- @XmlElement(name = "ChckngDt")
+ @XmlElement(name = "ChckngDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chckngDt;
@XmlElement(name = "ChckngFrqcy")
@XmlSchemaType(name = "string")
protected EventFrequency1Code chckngFrqcy;
- @XmlElement(name = "NxtRvsnDt")
+ @XmlElement(name = "NxtRvsnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRvsnDt;
@XmlElement(name = "SlryRg")
@@ -200,7 +204,7 @@ public PartyProfileInformation5 setCertTp(CertificationType1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChckngDt() {
@@ -212,7 +216,7 @@ public XMLGregorianCalendar getChckngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation5 setChckngDt(XMLGregorianCalendar value) {
@@ -250,7 +254,7 @@ public PartyProfileInformation5 setChckngFrqcy(EventFrequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRvsnDt() {
@@ -262,7 +266,7 @@ public XMLGregorianCalendar getNxtRvsnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PartyProfileInformation5 setNxtRvsnDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction24.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction24.java
index 78d07ca85..e937609fb 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction24.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class PaymentInstruction24 {
protected BigDecimal ctrlSum;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation19 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt", required = true)
+ @XmlElement(name = "ReqdExctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "Dbtr", required = true)
@@ -241,7 +245,7 @@ public PaymentInstruction24 setPmtTpInf(PaymentTypeInformation19 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction24 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public PaymentInstruction24 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction24 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction28.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction28.java
index 75ed1f8a9..2002b80ef 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction28.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction28.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class PaymentInstruction28 {
protected BigDecimal ctrlSum;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation26 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt", required = true)
+ @XmlElement(name = "ReqdExctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "Dbtr", required = true)
@@ -241,7 +245,7 @@ public PaymentInstruction28 setPmtTpInf(PaymentTypeInformation26 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction28 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public PaymentInstruction28 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction28 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction36.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction36.java
index 2b931ddc1..3d24278b7 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction36.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction36.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class PaymentInstruction36 {
protected BigDecimal ctrlSum;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation26 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt", required = true)
+ @XmlElement(name = "ReqdExctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "Dbtr", required = true)
@@ -241,7 +245,7 @@ public PaymentInstruction36 setPmtTpInf(PaymentTypeInformation26 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction36 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public PaymentInstruction36 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction36 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction38.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction38.java
index 226dffc46..e1380d21b 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction38.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction38.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class PaymentInstruction38 {
protected BigDecimal ctrlSum;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation26 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt", required = true)
+ @XmlElement(name = "ReqdExctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "Dbtr", required = true)
@@ -241,7 +245,7 @@ public PaymentInstruction38 setPmtTpInf(PaymentTypeInformation26 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -253,7 +257,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction38 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -266,7 +270,7 @@ public PaymentInstruction38 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -278,7 +282,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction38 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxIdentification2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxIdentification2.java
index a476872fe..e6dc35218 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxIdentification2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxIdentification2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +38,12 @@ public class TaxIdentification2 {
protected TaxIdentificationType1Choice taxIdTp;
@XmlElement(name = "Issr")
protected String issr;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "IssrCtry", required = true)
@@ -125,7 +129,7 @@ public TaxIdentification2 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -137,7 +141,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxIdentification2 setIsseDt(XMLGregorianCalendar value) {
@@ -150,7 +154,7 @@ public TaxIdentification2 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -162,7 +166,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxIdentification2 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxWithholdingMethod3Code.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxWithholdingMethod3Code.java
index f86990c2e..fba15ff8a 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxWithholdingMethod3Code.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxWithholdingMethod3Code.java
@@ -33,13 +33,13 @@ public enum TaxWithholdingMethod3Code {
/**
- * Minority interest tax is withheld.
+ * Minority interest tax is withheld.
*
*/
MITX,
/**
- * Withholding tax is applied to an investment company.
+ * Withholding tax is applied to an investment company.
*
*/
INVE,
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights1.java
index 0394f4594..e38a95bf7 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class ThirdPartyRights1 {
@XmlElement(name = "Tp", required = true)
protected String tp;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "Hldr")
@@ -74,7 +77,7 @@ public ThirdPartyRights1 setTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ThirdPartyRights1 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights2.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights2.java
index a162bcd2e..01242cd93 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights2.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ThirdPartyRights2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class ThirdPartyRights2 {
@XmlElement(name = "Tp", required = true)
protected String tp;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "Hldr")
@@ -74,7 +77,7 @@ public ThirdPartyRights2 setTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ThirdPartyRights2 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionType5Choice.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionType5Choice.java
index 121c02035..902362ed6 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionType5Choice.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionType5Choice.java
@@ -13,7 +13,7 @@
/**
- * Choice of formats for the specification of the order type.
+ * Choice of formats for the specification of the order type.
*
*
*
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferInstruction1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferInstruction1.java
index 77abf5bcc..ca0dc6341 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferInstruction1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransferInstruction1.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +39,12 @@ public class TransferInstruction1 {
protected String cd;
@XmlElement(name = "Prtry")
protected String prtry;
- @XmlElement(name = "StartDtTm")
+ @XmlElement(name = "StartDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDtTm;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "Desc")
@@ -125,7 +130,7 @@ public TransferInstruction1 setPrtry(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDtTm() {
@@ -137,7 +142,7 @@ public XMLGregorianCalendar getStartDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransferInstruction1 setStartDtTm(XMLGregorianCalendar value) {
@@ -150,7 +155,7 @@ public TransferInstruction1 setStartDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -162,7 +167,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransferInstruction1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TreasuryProfile1.java b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TreasuryProfile1.java
index 39a5b5097..3b58a3fb7 100644
--- a/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TreasuryProfile1.java
+++ b/model-acmt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TreasuryProfile1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TreasuryProfile1 {
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "TradrTp", required = true)
@@ -41,7 +44,7 @@ public class TreasuryProfile1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TreasuryProfile1 setDt(XMLGregorianCalendar value) {
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00100101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00100101.java
index 76fcee541..8034d576c 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00100101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00100101 parse(String xml) {
- return ((MxAdmi00100101) MxReadImpl.parse(MxAdmi00100101 .class, xml, _classes));
+ return ((MxAdmi00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00200101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00200101.java
index a49b43477..a770a53d6 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00200101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00200101 parse(String xml) {
- return ((MxAdmi00200101) MxReadImpl.parse(MxAdmi00200101 .class, xml, _classes));
+ return ((MxAdmi00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00300101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00300101.java
index 14f36c99d..49952a8ad 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00300101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00300101 parse(String xml) {
- return ((MxAdmi00300101) MxReadImpl.parse(MxAdmi00300101 .class, xml, _classes));
+ return ((MxAdmi00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400101.java
index d573274fc..72b771b44 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00400101 parse(String xml) {
- return ((MxAdmi00400101) MxReadImpl.parse(MxAdmi00400101 .class, xml, _classes));
+ return ((MxAdmi00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400102.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400102.java
index 057ef3d3b..dc1d82b13 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400102.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00400102 parse(String xml) {
- return ((MxAdmi00400102) MxReadImpl.parse(MxAdmi00400102 .class, xml, _classes));
+ return ((MxAdmi00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00500101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00500101.java
index 659fe7546..a344b0cde 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00500101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00500101 parse(String xml) {
- return ((MxAdmi00500101) MxReadImpl.parse(MxAdmi00500101 .class, xml, _classes));
+ return ((MxAdmi00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00600101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00600101.java
index 8afc7b16f..d3574a781 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00600101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00600101 parse(String xml) {
- return ((MxAdmi00600101) MxReadImpl.parse(MxAdmi00600101 .class, xml, _classes));
+ return ((MxAdmi00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00700101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00700101.java
index e24bed65c..8348c12df 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00700101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00700101 parse(String xml) {
- return ((MxAdmi00700101) MxReadImpl.parse(MxAdmi00700101 .class, xml, _classes));
+ return ((MxAdmi00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00800101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00800101.java
index daee254c4..0af896dfb 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00800101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00800101 parse(String xml) {
- return ((MxAdmi00800101) MxReadImpl.parse(MxAdmi00800101 .class, xml, _classes));
+ return ((MxAdmi00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900101.java
index c22175616..841f219b6 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00900101 parse(String xml) {
- return ((MxAdmi00900101) MxReadImpl.parse(MxAdmi00900101 .class, xml, _classes));
+ return ((MxAdmi00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900102.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900102.java
index a74300eaa..5794a8673 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900102.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi00900102 parse(String xml) {
- return ((MxAdmi00900102) MxReadImpl.parse(MxAdmi00900102 .class, xml, _classes));
+ return ((MxAdmi00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000101.java
index 982770ced..b3378e547 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01000101 parse(String xml) {
- return ((MxAdmi01000101) MxReadImpl.parse(MxAdmi01000101 .class, xml, _classes));
+ return ((MxAdmi01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000102.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000102.java
index 974f17b93..6fa875bd9 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000102.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01000102 parse(String xml) {
- return ((MxAdmi01000102) MxReadImpl.parse(MxAdmi01000102 .class, xml, _classes));
+ return ((MxAdmi01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01100101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01100101.java
index 6d805a953..227337f17 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01100101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01100101 parse(String xml) {
- return ((MxAdmi01100101) MxReadImpl.parse(MxAdmi01100101 .class, xml, _classes));
+ return ((MxAdmi01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01400102.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01400102.java
index dc9b813f9..0c6c2bfd1 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01400102.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01400102 parse(String xml) {
- return ((MxAdmi01400102) MxReadImpl.parse(MxAdmi01400102 .class, xml, _classes));
+ return ((MxAdmi01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01600101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01600101.java
index bbb126788..0bb72333b 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01600101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01600101 parse(String xml) {
- return ((MxAdmi01600101) MxReadImpl.parse(MxAdmi01600101 .class, xml, _classes));
+ return ((MxAdmi01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01700101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01700101.java
index 165356649..97258d706 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01700101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi01700101 parse(String xml) {
- return ((MxAdmi01700101) MxReadImpl.parse(MxAdmi01700101 .class, xml, _classes));
+ return ((MxAdmi01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800101.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800101.java
index b7b04a7a0..8536e3518 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800101.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi99800101 parse(String xml) {
- return ((MxAdmi99800101) MxReadImpl.parse(MxAdmi99800101 .class, xml, _classes));
+ return ((MxAdmi99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi99800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800102.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800102.java
index 1ac3267c1..d022ce46f 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800102.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi99800102 parse(String xml) {
- return ((MxAdmi99800102) MxReadImpl.parse(MxAdmi99800102 .class, xml, _classes));
+ return ((MxAdmi99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi99800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800103.java b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800103.java
index dbffec417..f8b9dd39a 100644
--- a/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800103.java
+++ b/model-admi-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAdmi99800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAdmi99800103 parse(String xml) {
- return ((MxAdmi99800103) MxReadImpl.parse(MxAdmi99800103 .class, xml, _classes));
+ return ((MxAdmi99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAdmi99800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAdmi99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAdmi99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event1.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event1.java
index 4a376b56b..24746e249 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event1.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Event1 {
protected List evtParam;
@XmlElement(name = "EvtDesc")
protected String evtDesc;
- @XmlElement(name = "EvtTm")
+ @XmlElement(name = "EvtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar evtTm;
@@ -124,7 +127,7 @@ public Event1 setEvtDesc(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtTm() {
@@ -136,7 +139,7 @@ public XMLGregorianCalendar getEvtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Event1 setEvtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event2.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event2.java
index 3ebdf7919..5271a51db 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event2.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Event2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Event2 {
protected List evtParam;
@XmlElement(name = "EvtDesc")
protected String evtDesc;
- @XmlElement(name = "EvtTm")
+ @XmlElement(name = "EvtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar evtTm;
@@ -124,7 +127,7 @@ public Event2 setEvtDesc(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtTm() {
@@ -136,7 +139,7 @@ public XMLGregorianCalendar getEvtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Event2 setEvtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader10.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader10.java
index 279a60312..6fd9244d9 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader10.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MessageHeader10 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "QryNm")
@@ -65,7 +68,7 @@ public MessageHeader10 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader10 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantStatusNotificationV01.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantStatusNotificationV01.java
index 9c66959b7..697ff0c35 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantStatusNotificationV01.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantStatusNotificationV01.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class ParticipantStatusNotificationV01 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NtifngPtcpt", required = true)
@@ -77,7 +80,7 @@ public ParticipantStatusNotificationV01 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ParticipantStatusNotificationV01 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason2.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason2.java
index ccfd07580..8429f6930 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason2.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class RejectionReason2 {
@XmlElement(name = "RjctgPtyRsn", required = true)
protected String rjctgPtyRsn;
- @XmlElement(name = "RjctnDtTm")
+ @XmlElement(name = "RjctnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rjctnDtTm;
@XmlElement(name = "ErrLctn")
@@ -71,7 +74,7 @@ public RejectionReason2 setRjctgPtyRsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRjctnDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getRjctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RejectionReason2 setRjctnDtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader1.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader1.java
index fe9c5019a..11b705ef6 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader1.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class ReportHeader1 {
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "CntsTp", required = true)
@@ -37,7 +40,7 @@ public class ReportHeader1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportHeader1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestHandling2.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestHandling2.java
index c9094eb11..cd6cbb10d 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestHandling2.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestHandling2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class RequestHandling2 {
@XmlElement(name = "StsCd", required = true)
protected String stsCd;
- @XmlElement(name = "StsDtTm")
+ @XmlElement(name = "StsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDtTm;
@XmlElement(name = "Desc")
@@ -65,7 +68,7 @@ public RequestHandling2 setStsCd(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestHandling2 setStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestorDetails1.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestorDetails1.java
index 1e26a3336..96dcaee8b 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestorDetails1.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestorDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class RequestorDetails1 {
- @XmlElement(name = "DtTmStmp", required = true)
+ @XmlElement(name = "DtTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTmStmp;
@XmlElement(name = "Rqstr", required = true)
@@ -37,7 +40,7 @@ public class RequestorDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTmStmp() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDtTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestorDetails1 setDtTmStmp(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResendSearchCriteria2.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResendSearchCriteria2.java
index b0f8409cc..15240831f 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResendSearchCriteria2.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResendSearchCriteria2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class ResendSearchCriteria2 {
- @XmlElement(name = "BizDt")
+ @XmlElement(name = "BizDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar bizDt;
@XmlElement(name = "SeqNb")
@@ -49,7 +52,7 @@ public class ResendSearchCriteria2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBizDt() {
@@ -61,7 +64,7 @@ public XMLGregorianCalendar getBizDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResendSearchCriteria2 setBizDt(XMLGregorianCalendar value) {
diff --git a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResponderDetails1.java b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResponderDetails1.java
index ad4b31382..1eed76aec 100644
--- a/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResponderDetails1.java
+++ b/model-admi-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResponderDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class ResponderDetails1 {
- @XmlElement(name = "DtTmStmp", required = true)
+ @XmlElement(name = "DtTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTmStmp;
@XmlElement(name = "Rspndr", required = true)
@@ -37,7 +40,7 @@ public class ResponderDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTmStmp() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDtTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResponderDetails1 setDtTmStmp(XMLGregorianCalendar value) {
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00100101.java
index 186862736..0f1fd1b32 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth00100101 parse(String xml) {
- return ((MxAuth00100101) MxReadImpl.parse(MxAuth00100101 .class, xml, _classes));
+ return ((MxAuth00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00200101.java
index a76284e31..984b19d85 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth00200101 parse(String xml) {
- return ((MxAuth00200101) MxReadImpl.parse(MxAuth00200101 .class, xml, _classes));
+ return ((MxAuth00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00300101.java
index ac8b3c579..0cf952c12 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth00300101 parse(String xml) {
- return ((MxAuth00300101) MxReadImpl.parse(MxAuth00300101 .class, xml, _classes));
+ return ((MxAuth00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00800102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00800102.java
index 6767a8f4d..dcbae9b8d 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00800102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth00800102 parse(String xml) {
- return ((MxAuth00800102) MxReadImpl.parse(MxAuth00800102 .class, xml, _classes));
+ return ((MxAuth00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00900102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00900102.java
index a21d6a73c..c06a78aae 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00900102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth00900102 parse(String xml) {
- return ((MxAuth00900102) MxReadImpl.parse(MxAuth00900102 .class, xml, _classes));
+ return ((MxAuth00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01000101.java
index 5e4a5e12f..db28e96b8 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01000101 parse(String xml) {
- return ((MxAuth01000101) MxReadImpl.parse(MxAuth01000101 .class, xml, _classes));
+ return ((MxAuth01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01100101.java
index f69e641af..ce5cc3928 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01100101 parse(String xml) {
- return ((MxAuth01100101) MxReadImpl.parse(MxAuth01100101 .class, xml, _classes));
+ return ((MxAuth01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200101.java
index 8c9ed489c..88a6c6da4 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01200101 parse(String xml) {
- return ((MxAuth01200101) MxReadImpl.parse(MxAuth01200101 .class, xml, _classes));
+ return ((MxAuth01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200102.java
index c5ac00465..e1e5b9ec8 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01200102 parse(String xml) {
- return ((MxAuth01200102) MxReadImpl.parse(MxAuth01200102 .class, xml, _classes));
+ return ((MxAuth01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300101.java
index 1e9296234..3ba28891d 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01300101 parse(String xml) {
- return ((MxAuth01300101) MxReadImpl.parse(MxAuth01300101 .class, xml, _classes));
+ return ((MxAuth01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300102.java
index 0e0cb8ca0..eecf2796a 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01300102 parse(String xml) {
- return ((MxAuth01300102) MxReadImpl.parse(MxAuth01300102 .class, xml, _classes));
+ return ((MxAuth01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400101.java
index 72c8c8e50..c3adc4ea8 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01400101 parse(String xml) {
- return ((MxAuth01400101) MxReadImpl.parse(MxAuth01400101 .class, xml, _classes));
+ return ((MxAuth01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400102.java
index c05d1b7e2..924d66e51 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01400102 parse(String xml) {
- return ((MxAuth01400102) MxReadImpl.parse(MxAuth01400102 .class, xml, _classes));
+ return ((MxAuth01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500101.java
index c25bf7b49..fed8bceba 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01500101 parse(String xml) {
- return ((MxAuth01500101) MxReadImpl.parse(MxAuth01500101 .class, xml, _classes));
+ return ((MxAuth01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500102.java
index f68065354..9a0f20553 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01500102 parse(String xml) {
- return ((MxAuth01500102) MxReadImpl.parse(MxAuth01500102 .class, xml, _classes));
+ return ((MxAuth01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01600101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01600101.java
index aa614e89d..91d1e0589 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01600101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01600101 parse(String xml) {
- return ((MxAuth01600101) MxReadImpl.parse(MxAuth01600101 .class, xml, _classes));
+ return ((MxAuth01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700101.java
index 0d0b05210..2240371d8 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01700101 parse(String xml) {
- return ((MxAuth01700101) MxReadImpl.parse(MxAuth01700101 .class, xml, _classes));
+ return ((MxAuth01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700102.java
index 927d34cfb..669bc76f2 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01700102 parse(String xml) {
- return ((MxAuth01700102) MxReadImpl.parse(MxAuth01700102 .class, xml, _classes));
+ return ((MxAuth01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01800101.java
index bb78bbc0b..2c4747a11 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01800101 parse(String xml) {
- return ((MxAuth01800101) MxReadImpl.parse(MxAuth01800101 .class, xml, _classes));
+ return ((MxAuth01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01900101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01900101.java
index dec374f76..92f399269 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01900101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth01900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth01900101 parse(String xml) {
- return ((MxAuth01900101) MxReadImpl.parse(MxAuth01900101 .class, xml, _classes));
+ return ((MxAuth01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth01900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02000101.java
index cefef8b3d..844912385 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02000101 parse(String xml) {
- return ((MxAuth02000101) MxReadImpl.parse(MxAuth02000101 .class, xml, _classes));
+ return ((MxAuth02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02100101.java
index 66c00064b..bb25cb9da 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02100101 parse(String xml) {
- return ((MxAuth02100101) MxReadImpl.parse(MxAuth02100101 .class, xml, _classes));
+ return ((MxAuth02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02200101.java
index 804cd47f4..a0c8dd950 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02200101 parse(String xml) {
- return ((MxAuth02200101) MxReadImpl.parse(MxAuth02200101 .class, xml, _classes));
+ return ((MxAuth02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02300101.java
index d422455b1..8a687f942 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02300101 parse(String xml) {
- return ((MxAuth02300101) MxReadImpl.parse(MxAuth02300101 .class, xml, _classes));
+ return ((MxAuth02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02400101.java
index 5e24dbc5f..64638c800 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02400101 parse(String xml) {
- return ((MxAuth02400101) MxReadImpl.parse(MxAuth02400101 .class, xml, _classes));
+ return ((MxAuth02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02500101.java
index 9d786d38f..d7cb15ba2 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02500101 parse(String xml) {
- return ((MxAuth02500101) MxReadImpl.parse(MxAuth02500101 .class, xml, _classes));
+ return ((MxAuth02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02600101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02600101.java
index a6a24132f..d35f73cf3 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02600101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02600101 parse(String xml) {
- return ((MxAuth02600101) MxReadImpl.parse(MxAuth02600101 .class, xml, _classes));
+ return ((MxAuth02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02700101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02700101.java
index 93a8378fd..ed204c6d2 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02700101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02700101 parse(String xml) {
- return ((MxAuth02700101) MxReadImpl.parse(MxAuth02700101 .class, xml, _classes));
+ return ((MxAuth02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02800101.java
index 5aea8dbad..5664c9d25 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth02800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth02800101 parse(String xml) {
- return ((MxAuth02800101) MxReadImpl.parse(MxAuth02800101 .class, xml, _classes));
+ return ((MxAuth02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth02800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03100101.java
index c9e584141..caf067277 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03100101 parse(String xml) {
- return ((MxAuth03100101) MxReadImpl.parse(MxAuth03100101 .class, xml, _classes));
+ return ((MxAuth03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03200101.java
index 7fc75f47f..7d6d104bc 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03200101 parse(String xml) {
- return ((MxAuth03200101) MxReadImpl.parse(MxAuth03200101 .class, xml, _classes));
+ return ((MxAuth03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300101.java
index 1426a261a..bb29d5b07 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03300101 parse(String xml) {
- return ((MxAuth03300101) MxReadImpl.parse(MxAuth03300101 .class, xml, _classes));
+ return ((MxAuth03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300102.java
index 0a24ed58a..8610502b9 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03300102 parse(String xml) {
- return ((MxAuth03300102) MxReadImpl.parse(MxAuth03300102 .class, xml, _classes));
+ return ((MxAuth03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03400101.java
index 8342ab53c..d93d98792 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03400101 parse(String xml) {
- return ((MxAuth03400101) MxReadImpl.parse(MxAuth03400101 .class, xml, _classes));
+ return ((MxAuth03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03500101.java
index 0885db1e0..ce16cc3fc 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03500101 parse(String xml) {
- return ((MxAuth03500101) MxReadImpl.parse(MxAuth03500101 .class, xml, _classes));
+ return ((MxAuth03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600101.java
index 7f4a42d7c..80e721c07 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03600101 parse(String xml) {
- return ((MxAuth03600101) MxReadImpl.parse(MxAuth03600101 .class, xml, _classes));
+ return ((MxAuth03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600102.java
index 925bd9d54..89fa164b5 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03600102 parse(String xml) {
- return ((MxAuth03600102) MxReadImpl.parse(MxAuth03600102 .class, xml, _classes));
+ return ((MxAuth03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03800101.java
index 5cf9cef1f..1130bdd81 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03800101 parse(String xml) {
- return ((MxAuth03800101) MxReadImpl.parse(MxAuth03800101 .class, xml, _classes));
+ return ((MxAuth03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03900101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03900101.java
index a5cdcd9e2..523bf692d 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03900101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth03900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth03900101 parse(String xml) {
- return ((MxAuth03900101) MxReadImpl.parse(MxAuth03900101 .class, xml, _classes));
+ return ((MxAuth03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth03900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04000101.java
index f4a914980..0bd2a46b1 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04000101 parse(String xml) {
- return ((MxAuth04000101) MxReadImpl.parse(MxAuth04000101 .class, xml, _classes));
+ return ((MxAuth04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04100101.java
index 9644a2d1f..9b3e3c907 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04100101 parse(String xml) {
- return ((MxAuth04100101) MxReadImpl.parse(MxAuth04100101 .class, xml, _classes));
+ return ((MxAuth04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200101.java
index 03f2aab5b..182880df4 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04200101 parse(String xml) {
- return ((MxAuth04200101) MxReadImpl.parse(MxAuth04200101 .class, xml, _classes));
+ return ((MxAuth04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200102.java
index 68655d748..52236adac 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04200102 parse(String xml) {
- return ((MxAuth04200102) MxReadImpl.parse(MxAuth04200102 .class, xml, _classes));
+ return ((MxAuth04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04300101.java
index f6278d874..ad4cf161c 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04300101 parse(String xml) {
- return ((MxAuth04300101) MxReadImpl.parse(MxAuth04300101 .class, xml, _classes));
+ return ((MxAuth04300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400101.java
index 3d4f034d3..131c8db08 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04400101 parse(String xml) {
- return ((MxAuth04400101) MxReadImpl.parse(MxAuth04400101 .class, xml, _classes));
+ return ((MxAuth04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400102.java
index 42b483f38..3f6a25e44 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04400102 parse(String xml) {
- return ((MxAuth04400102) MxReadImpl.parse(MxAuth04400102 .class, xml, _classes));
+ return ((MxAuth04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500101.java
index 16a58b7f8..76b739e48 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04500101 parse(String xml) {
- return ((MxAuth04500101) MxReadImpl.parse(MxAuth04500101 .class, xml, _classes));
+ return ((MxAuth04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500102.java
index d631060fb..11643bcea 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04500102 parse(String xml) {
- return ((MxAuth04500102) MxReadImpl.parse(MxAuth04500102 .class, xml, _classes));
+ return ((MxAuth04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04700101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04700101.java
index fb4e93ba7..7313d5f2c 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04700101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04700101 parse(String xml) {
- return ((MxAuth04700101) MxReadImpl.parse(MxAuth04700101 .class, xml, _classes));
+ return ((MxAuth04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04800101.java
index 2ba1313ae..2111e93fc 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04800101 parse(String xml) {
- return ((MxAuth04800101) MxReadImpl.parse(MxAuth04800101 .class, xml, _classes));
+ return ((MxAuth04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900101.java
index e66994f03..22f0c8f84 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04900101 parse(String xml) {
- return ((MxAuth04900101) MxReadImpl.parse(MxAuth04900101 .class, xml, _classes));
+ return ((MxAuth04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900102.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900102.java
index 35fdf800b..7beefa7bd 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900102.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth04900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth04900102 parse(String xml) {
- return ((MxAuth04900102) MxReadImpl.parse(MxAuth04900102 .class, xml, _classes));
+ return ((MxAuth04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth04900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05000101.java
index 6de9e379a..7e0eabf94 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth05000101 parse(String xml) {
- return ((MxAuth05000101) MxReadImpl.parse(MxAuth05000101 .class, xml, _classes));
+ return ((MxAuth05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth05000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05200101.java
index c5633c37f..d4a9cd654 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth05200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth05200101 parse(String xml) {
- return ((MxAuth05200101) MxReadImpl.parse(MxAuth05200101 .class, xml, _classes));
+ return ((MxAuth05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth05200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07000101.java
index 15a39309c..6ddf124d8 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07000101 parse(String xml) {
- return ((MxAuth07000101) MxReadImpl.parse(MxAuth07000101 .class, xml, _classes));
+ return ((MxAuth07000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07100101.java
index da3851232..513378d9a 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07100101 parse(String xml) {
- return ((MxAuth07100101) MxReadImpl.parse(MxAuth07100101 .class, xml, _classes));
+ return ((MxAuth07100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07200101.java
index 59ae11d22..0aa5c3e2c 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07200101 parse(String xml) {
- return ((MxAuth07200101) MxReadImpl.parse(MxAuth07200101 .class, xml, _classes));
+ return ((MxAuth07200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07600101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07600101.java
index 46b724924..cc97043b1 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07600101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07600101 parse(String xml) {
- return ((MxAuth07600101) MxReadImpl.parse(MxAuth07600101 .class, xml, _classes));
+ return ((MxAuth07600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07700101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07700101.java
index 9d10097a5..0c07c4877 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07700101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07700101 parse(String xml) {
- return ((MxAuth07700101) MxReadImpl.parse(MxAuth07700101 .class, xml, _classes));
+ return ((MxAuth07700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07800101.java
index 45bb56162..bdec9b400 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07800101 parse(String xml) {
- return ((MxAuth07800101) MxReadImpl.parse(MxAuth07800101 .class, xml, _classes));
+ return ((MxAuth07800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07900101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07900101.java
index e7683e203..de25753f0 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07900101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth07900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth07900101 parse(String xml) {
- return ((MxAuth07900101) MxReadImpl.parse(MxAuth07900101 .class, xml, _classes));
+ return ((MxAuth07900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth07900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth07900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth07900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08000101.java
index 5ddba986b..36167b2de 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08000101 parse(String xml) {
- return ((MxAuth08000101) MxReadImpl.parse(MxAuth08000101 .class, xml, _classes));
+ return ((MxAuth08000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08100101.java
index ff9f108bf..88111206e 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08100101 parse(String xml) {
- return ((MxAuth08100101) MxReadImpl.parse(MxAuth08100101 .class, xml, _classes));
+ return ((MxAuth08100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08200101.java
index bab1ca937..1f925540f 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08200101 parse(String xml) {
- return ((MxAuth08200101) MxReadImpl.parse(MxAuth08200101 .class, xml, _classes));
+ return ((MxAuth08200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08300101.java
index 7e51b97b8..2204f1f15 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08300101 parse(String xml) {
- return ((MxAuth08300101) MxReadImpl.parse(MxAuth08300101 .class, xml, _classes));
+ return ((MxAuth08300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08400101.java
index 7ad08063e..87ed59fe2 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08400101 parse(String xml) {
- return ((MxAuth08400101) MxReadImpl.parse(MxAuth08400101 .class, xml, _classes));
+ return ((MxAuth08400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08500101.java
index 4c236d71c..01994467b 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08500101 parse(String xml) {
- return ((MxAuth08500101) MxReadImpl.parse(MxAuth08500101 .class, xml, _classes));
+ return ((MxAuth08500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08600101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08600101.java
index c0e398fbd..f8d630593 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08600101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08600101 parse(String xml) {
- return ((MxAuth08600101) MxReadImpl.parse(MxAuth08600101 .class, xml, _classes));
+ return ((MxAuth08600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08700101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08700101.java
index 4f46855cb..4e5311915 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08700101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08700101 parse(String xml) {
- return ((MxAuth08700101) MxReadImpl.parse(MxAuth08700101 .class, xml, _classes));
+ return ((MxAuth08700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08800101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08800101.java
index 08444abb3..0a642e412 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08800101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth08800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth08800101 parse(String xml) {
- return ((MxAuth08800101) MxReadImpl.parse(MxAuth08800101 .class, xml, _classes));
+ return ((MxAuth08800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth08800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth08800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth08800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09000101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09000101.java
index 977ea8267..30552ff80 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09000101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09000101 parse(String xml) {
- return ((MxAuth09000101) MxReadImpl.parse(MxAuth09000101 .class, xml, _classes));
+ return ((MxAuth09000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09100101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09100101.java
index a5b9e4bb2..c3dac513b 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09100101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09100101 parse(String xml) {
- return ((MxAuth09100101) MxReadImpl.parse(MxAuth09100101 .class, xml, _classes));
+ return ((MxAuth09100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09200101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09200101.java
index c8253d520..2a6866d28 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09200101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09200101 parse(String xml) {
- return ((MxAuth09200101) MxReadImpl.parse(MxAuth09200101 .class, xml, _classes));
+ return ((MxAuth09200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09300101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09300101.java
index 3074c09d8..337b29560 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09300101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09300101 parse(String xml) {
- return ((MxAuth09300101) MxReadImpl.parse(MxAuth09300101 .class, xml, _classes));
+ return ((MxAuth09300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09400101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09400101.java
index 67437beda..153c5bddb 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09400101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09400101 parse(String xml) {
- return ((MxAuth09400101) MxReadImpl.parse(MxAuth09400101 .class, xml, _classes));
+ return ((MxAuth09400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09500101.java b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09500101.java
index 5454ea9c7..b9f35581e 100644
--- a/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09500101.java
+++ b/model-auth-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxAuth09500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxAuth09500101 parse(String xml) {
- return ((MxAuth09500101) MxReadImpl.parse(MxAuth09500101 .class, xml, _classes));
+ return ((MxAuth09500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxAuth09500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxAuth09500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxAuth09500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmortisedCostMethodPriceDeviationEvent1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmortisedCostMethodPriceDeviationEvent1.java
index baf77d9b9..7ee6853a3 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmortisedCostMethodPriceDeviationEvent1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmortisedCostMethodPriceDeviationEvent1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@
})
public class AmortisedCostMethodPriceDeviationEvent1 {
- @XmlElement(name = "ValtnDt", required = true)
+ @XmlElement(name = "ValtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valtnDt;
@XmlElement(name = "AsstId", required = true)
@@ -56,7 +59,7 @@ public class AmortisedCostMethodPriceDeviationEvent1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDt() {
@@ -68,7 +71,7 @@ public XMLGregorianCalendar getValtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmortisedCostMethodPriceDeviationEvent1 setValtnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetClassTransactionType1Code.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetClassTransactionType1Code.java
index ff397644c..a75d50836 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetClassTransactionType1Code.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetClassTransactionType1Code.java
@@ -34,7 +34,7 @@ public enum AssetClassTransactionType1Code {
/**
- * Crack.
+ * Crack.
*
*/
CRCK,
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetValuation1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetValuation1.java
index 4dc5458cb..3f4cafe48 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetValuation1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AssetValuation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class AssetValuation1 {
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "NtnlCcyFrstLeg", required = true)
@@ -61,7 +64,8 @@ public class AssetValuation1 {
@XmlElement(name = "CdtAssmntRslt")
@XmlSchemaType(name = "string")
protected AssessmentResultType1Code cdtAssmntRslt;
- @XmlElement(name = "RstDt")
+ @XmlElement(name = "RstDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rstDt;
@@ -70,7 +74,7 @@ public class AssetValuation1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -82,7 +86,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AssetValuation1 setMtrtyDt(XMLGregorianCalendar value) {
@@ -345,7 +349,7 @@ public AssetValuation1 setCdtAssmntRslt(AssessmentResultType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRstDt() {
@@ -357,7 +361,7 @@ public XMLGregorianCalendar getRstDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AssetValuation1 setRstDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BondDerivative2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BondDerivative2.java
index 1ead956d8..848b0a03f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BondDerivative2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BondDerivative2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class BondDerivative2 {
@XmlElement(name = "Issr", required = true)
protected String issr;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IssncDt")
+ @XmlElement(name = "IssncDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar issncDt;
@@ -66,7 +70,7 @@ public BondDerivative2 setIssr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BondDerivative2 setMtrtyDt(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public BondDerivative2 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIssncDt() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getIssncDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BondDerivative2 setIssncDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateReference1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateReference1.java
index 84c9fc35f..6b945b9a1 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateReference1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CertificateReference1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class CertificateReference1 {
@XmlElement(name = "Id", required = true)
protected CertificateIdentification1 id;
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -62,7 +65,7 @@ public CertificateReference1 setId(CertificateIdentification1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CertificateReference1 setDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClearingPartyAndTime7.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClearingPartyAndTime7.java
index 3d197a3c0..7d891a3ef 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClearingPartyAndTime7.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClearingPartyAndTime7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class ClearingPartyAndTime7 {
@XmlElement(name = "CCP")
protected String ccp;
- @XmlElement(name = "ClrDtTm")
+ @XmlElement(name = "ClrDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clrDtTm;
@XmlElement(name = "RptTrckgNb")
@@ -68,7 +71,7 @@ public ClearingPartyAndTime7 setCCP(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClrDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getClrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ClearingPartyAndTime7 setClrDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral15.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral15.java
index b64801360..1634c582b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral15.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral15.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class Collateral15 {
- @XmlElement(name = "CollValDt")
+ @XmlElement(name = "CollValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar collValDt;
@XmlElement(name = "AsstTp")
@@ -45,7 +48,7 @@ public class Collateral15 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCollValDt() {
@@ -57,7 +60,7 @@ public XMLGregorianCalendar getCollValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Collateral15 setCollValDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral27.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral27.java
index 7de4421a6..07ab7d78e 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral27.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Collateral27.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -25,7 +27,8 @@
})
public class Collateral27 {
- @XmlElement(name = "CollValDt")
+ @XmlElement(name = "CollValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar collValDt;
@@ -34,7 +37,7 @@ public class Collateral27 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCollValDt() {
@@ -46,7 +49,7 @@ public XMLGregorianCalendar getCollValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Collateral27 setCollValDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginCorrection2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginCorrection2.java
index 976bc515c..3f879716f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginCorrection2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginCorrection2.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +39,12 @@ public class CollateralMarginCorrection2 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrPty", required = true)
@@ -83,7 +88,7 @@ public CollateralMarginCorrection2 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginCorrection2 setRptgDtTm(XMLGregorianCalendar value) {
@@ -108,7 +113,7 @@ public CollateralMarginCorrection2 setRptgDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -120,7 +125,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginCorrection2 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginError1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginError1.java
index 735eb50cd..4ad7a96e4 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginError1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginError1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class CollateralMarginError1 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "CtrPty", required = true)
@@ -73,7 +76,7 @@ public CollateralMarginError1 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginError1 setRptgDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginMarginUpdate1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginMarginUpdate1.java
index f87a0b860..c068794ef 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginMarginUpdate1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginMarginUpdate1.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +39,12 @@ public class CollateralMarginMarginUpdate1 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrPty")
@@ -83,7 +88,7 @@ public CollateralMarginMarginUpdate1 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginMarginUpdate1 setRptgDtTm(XMLGregorianCalendar value) {
@@ -108,7 +113,7 @@ public CollateralMarginMarginUpdate1 setRptgDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -120,7 +125,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginMarginUpdate1 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginNew3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginNew3.java
index a1c0d12ce..ce7d4e6d2 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginNew3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMarginNew3.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +41,12 @@ public class CollateralMarginNew3 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrPty", required = true)
@@ -89,7 +94,7 @@ public CollateralMarginNew3 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -101,7 +106,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginNew3 setRptgDtTm(XMLGregorianCalendar value) {
@@ -114,7 +119,7 @@ public CollateralMarginNew3 setRptgDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -126,7 +131,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMarginNew3 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralRole1Code.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralRole1Code.java
deleted file mode 100644
index e3f2ad643..000000000
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralRole1Code.java
+++ /dev/null
@@ -1,48 +0,0 @@
-
-package com.prowidesoftware.swift.model.mx.dic;
-
-import javax.xml.bind.annotation.XmlEnum;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for CollateralRole1Code.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <simpleType name="CollateralRole1Code">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="GIVE"/>
- * <enumeration value="TAKE"/>
- * </restriction>
- * </simpleType>
- *
- *
- */
-@XmlType(name = "CollateralRole1Code")
-@XmlEnum
-public enum CollateralRole1Code {
-
-
- /**
- * Collateral giver.
- *
- */
- GIVE,
-
- /**
- * Collateral taker.
- *
- */
- TAKE;
-
- public String value() {
- return name();
- }
-
- public static CollateralRole1Code fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollaterisedData4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollaterisedData4.java
index 1580e2bd7..c64ed1c02 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollaterisedData4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollaterisedData4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CollaterisedData4 {
- @XmlElement(name = "CollValDt")
+ @XmlElement(name = "CollValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar collValDt;
@XmlElement(name = "AsstTp")
@@ -43,7 +46,7 @@ public class CollaterisedData4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCollValDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getCollValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollaterisedData4 setCollValDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDate1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDate1.java
index 83d584da0..37da860e4 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDate1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDate1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class CompareDate1 {
- @XmlElement(name = "Val1", required = true)
+ @XmlElement(name = "Val1", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar val1;
- @XmlElement(name = "Val2", required = true)
+ @XmlElement(name = "Val2", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar val2;
@@ -38,7 +42,7 @@ public class CompareDate1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVal1() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getVal1() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CompareDate1 setVal1(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public CompareDate1 setVal1(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVal2() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getVal2() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CompareDate1 setVal2(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDateTime1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDateTime1.java
index 9bdb716bf..3bcf4fa09 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDateTime1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompareDateTime1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class CompareDateTime1 {
- @XmlElement(name = "Val1", required = true)
+ @XmlElement(name = "Val1", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar val1;
- @XmlElement(name = "Val2", required = true)
+ @XmlElement(name = "Val2", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar val2;
@@ -38,7 +42,7 @@ public class CompareDateTime1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVal1() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getVal1() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CompareDateTime1 setVal1(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public CompareDateTime1 setVal1(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVal2() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getVal2() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CompareDateTime1 setVal2(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ConstantNetAssetValueDeviationEvent1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ConstantNetAssetValueDeviationEvent1.java
index e7defc8eb..58490ce48 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ConstantNetAssetValueDeviationEvent1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ConstantNetAssetValueDeviationEvent1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class ConstantNetAssetValueDeviationEvent1 {
- @XmlElement(name = "ValtnDt", required = true)
+ @XmlElement(name = "ValtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valtnDt;
@XmlElement(name = "CstNetAsstValPerUnit", required = true)
@@ -53,7 +56,7 @@ public class ConstantNetAssetValueDeviationEvent1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDt() {
@@ -65,7 +68,7 @@ public XMLGregorianCalendar getValtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ConstantNetAssetValueDeviationEvent1 setValtnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData48.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData48.java
index 723a6941a..3e3cb9b3f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData48.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData48.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class CounterpartyData48 {
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "RptSubmitgNtty", required = true)
@@ -42,7 +45,7 @@ public class CounterpartyData48 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -54,7 +57,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CounterpartyData48 setRptgDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData49.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData49.java
index 75335f82e..2f4b406a1 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData49.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CounterpartyData49.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class CounterpartyData49 {
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "RptSubmitgNtty", required = true)
@@ -42,7 +45,7 @@ public class CounterpartyData49 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -54,7 +57,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CounterpartyData49 setRptgDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex2.java
index b59b19e56..8126120ec 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class CreditDefaultSwapIndex2 {
protected BigDecimal vrsn;
@XmlElement(name = "RollMnth")
protected List rollMnth;
- @XmlElement(name = "NxtRollDt")
+ @XmlElement(name = "NxtRollDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRollDt;
@XmlElement(name = "NtnlCcy", required = true)
@@ -128,7 +131,7 @@ public List getRollMnth() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRollDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getNxtRollDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditDefaultSwapIndex2 setNxtRollDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex3.java
index 258f476a2..a46fb1068 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditDefaultSwapIndex3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class CreditDefaultSwapIndex3 {
protected BigDecimal vrsn;
@XmlElement(name = "RollMnth")
protected List rollMnth;
- @XmlElement(name = "NxtRollDt")
+ @XmlElement(name = "NxtRollDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtRollDt;
@XmlElement(name = "NtnlCcy", required = true)
@@ -184,7 +187,7 @@ public List getRollMnth() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtRollDt() {
@@ -196,7 +199,7 @@ public XMLGregorianCalendar getNxtRollDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditDefaultSwapIndex3 setNxtRollDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlGroupStatus1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlGroupStatus1.java
index 5419875a8..3e5b7753d 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlGroupStatus1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlGroupStatus1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class CurrencyControlGroupStatus1 {
protected StatisticalReportingStatus1Code sts;
@XmlElement(name = "StsRsn")
protected List stsRsn;
- @XmlElement(name = "StsDtTm")
+ @XmlElement(name = "StsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDtTm;
@@ -209,7 +212,7 @@ public List getStsRsn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDtTm() {
@@ -221,7 +224,7 @@ public XMLGregorianCalendar getStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlGroupStatus1 setStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader1.java
index be894609b..28f9b2101 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class CurrencyControlHeader1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfItms", required = true)
@@ -71,7 +74,7 @@ public CurrencyControlHeader1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlHeader1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader2.java
index fdb7d6920..71c9285a7 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class CurrencyControlHeader2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfItms", required = true)
@@ -71,7 +74,7 @@ public CurrencyControlHeader2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlHeader2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader3.java
index 70d24d4e0..2c66f4e98 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlHeader3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class CurrencyControlHeader3 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfItms", required = true)
@@ -71,7 +74,7 @@ public CurrencyControlHeader3 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlHeader3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlPackageStatus1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlPackageStatus1.java
index 29fe277bc..ae96fb068 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlPackageStatus1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlPackageStatus1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class CurrencyControlPackageStatus1 {
protected StatisticalReportingStatus1Code sts;
@XmlElement(name = "StsRsn")
protected List stsRsn;
- @XmlElement(name = "StsDtTm")
+ @XmlElement(name = "StsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDtTm;
@XmlElement(name = "RcrdSts")
@@ -128,7 +131,7 @@ public List getStsRsn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDtTm() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlPackageStatus1 setStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlRecordStatus1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlRecordStatus1.java
index 477543e05..eb337b794 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlRecordStatus1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyControlRecordStatus1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class CurrencyControlRecordStatus1 {
protected StatisticalReportingStatus1Code sts;
@XmlElement(name = "StsRsn")
protected List stsRsn;
- @XmlElement(name = "StsDtTm")
+ @XmlElement(name = "StsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDtTm;
@XmlElement(name = "DocId")
@@ -128,7 +131,7 @@ public List getStsRsn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDtTm() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyControlRecordStatus1 setStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java
deleted file mode 100644
index a0e8c80eb..000000000
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java
+++ /dev/null
@@ -1,101 +0,0 @@
-
-package com.prowidesoftware.swift.model.mx.dic;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-import org.apache.commons.lang3.builder.EqualsBuilder;
-import org.apache.commons.lang3.builder.HashCodeBuilder;
-import org.apache.commons.lang3.builder.ToStringBuilder;
-import org.apache.commons.lang3.builder.ToStringStyle;
-
-
-/**
- * Range of time defined by a start date and an end date.
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DatePeriod3", propOrder = {
- "frDt",
- "toDt"
-})
-public class DatePeriod3 {
-
- @XmlElement(name = "FrDt", required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar toDt;
-
- /**
- * Gets the value of the frDt property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getFrDt() {
- return frDt;
- }
-
- /**
- * Sets the value of the frDt property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public DatePeriod3 setFrDt(XMLGregorianCalendar value) {
- this.frDt = value;
- return this;
- }
-
- /**
- * Gets the value of the toDt property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getToDt() {
- return toDt;
- }
-
- /**
- * Sets the value of the toDt property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public DatePeriod3 setToDt(XMLGregorianCalendar value) {
- this.toDt = value;
- return this;
- }
-
- @Override
- public String toString() {
- return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
- }
-
- @Override
- public boolean equals(Object that) {
- return EqualsBuilder.reflectionEquals(this, that);
- }
-
- @Override
- public int hashCode() {
- return HashCodeBuilder.reflectionHashCode(this);
- }
-
-}
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument2.java
index 233c728e0..98fdd1661 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class DebtInstrument2 {
@XmlElement(name = "TtlIssdNmnlAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount ttlIssdNmnlAmt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "NmnlValPerUnit", required = true)
@@ -72,7 +75,7 @@ public DebtInstrument2 setTtlIssdNmnlAmt(ActiveOrHistoricCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -84,7 +87,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebtInstrument2 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument4.java
index 5078c0ca8..5c60a1289 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -25,7 +27,8 @@
})
public class DebtInstrument4 {
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@@ -34,7 +37,7 @@ public class DebtInstrument4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -46,7 +49,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebtInstrument4 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument5.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument5.java
index fce40680f..af59cc5eb 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument5.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebtInstrument5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class DebtInstrument5 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected BondType1Code tp;
- @XmlElement(name = "IssncDt", required = true)
+ @XmlElement(name = "IssncDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar issncDt;
@@ -63,7 +66,7 @@ public DebtInstrument5 setTp(BondType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIssncDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getIssncDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebtInstrument5 setIssncDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeCommodity2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeCommodity2.java
index 17c1e1bfc..fa90f04ed 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeCommodity2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeCommodity2.java
@@ -13,7 +13,7 @@
/**
- * Defines the details of a commodity derivative.
+ * Defines the details of a commodity derivative.
*
*
*
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument5.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument5.java
index b264df611..6d7bdf9ba 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument5.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@
})
public class DerivativeInstrument5 {
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "PricMltplr")
@@ -59,7 +62,7 @@ public class DerivativeInstrument5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -71,7 +74,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DerivativeInstrument5 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument6.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument6.java
index dd9e519e7..e1cb482aa 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument6.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DerivativeInstrument6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@
})
public class DerivativeInstrument6 {
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "PricMltplr", required = true)
@@ -59,7 +62,7 @@ public class DerivativeInstrument6 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -71,7 +74,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DerivativeInstrument6 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedStatisticsPerCounterparty4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedStatisticsPerCounterparty4.java
index 28f702d75..05de85136 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedStatisticsPerCounterparty4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedStatisticsPerCounterparty4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class DetailedStatisticsPerCounterparty4 {
- @XmlElement(name = "RefDt", required = true)
+ @XmlElement(name = "RefDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar refDt;
@XmlElement(name = "CtrPtyId", required = true)
@@ -45,7 +48,7 @@ public class DetailedStatisticsPerCounterparty4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRefDt() {
@@ -57,7 +60,7 @@ public XMLGregorianCalendar getRefDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DetailedStatisticsPerCounterparty4 setRefDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation3.java
index 9b717ceae..a0d455a9f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class DocumentGeneralInformation3 {
protected String docNb;
@XmlElement(name = "SndrRcvrSeqId")
protected String sndrRcvrSeqId;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
@XmlElement(name = "URL")
@@ -127,7 +130,7 @@ public DocumentGeneralInformation3 setSndrRcvrSeqId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -139,7 +142,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentGeneralInformation3 setIsseDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification28.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification28.java
index 533c833a2..7fd736745 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification28.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification28.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class DocumentIdentification28 {
@XmlElement(name = "Id")
protected String id;
- @XmlElement(name = "DtOfIsse", required = true)
+ @XmlElement(name = "DtOfIsse", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfIsse;
@@ -62,7 +65,7 @@ public DocumentIdentification28 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfIsse() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDtOfIsse() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification28 setDtOfIsse(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification29.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification29.java
index 0e17607e4..9757d6d12 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification29.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification29.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class DocumentIdentification29 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "DtOfIsse", required = true)
+ @XmlElement(name = "DtOfIsse", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfIsse;
@@ -62,7 +65,7 @@ public DocumentIdentification29 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfIsse() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDtOfIsse() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification29 setDtOfIsse(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DueDate1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DueDate1.java
index ec97700c1..d10174c70 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DueDate1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DueDate1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class DueDate1 {
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "AddtlInf")
@@ -37,7 +40,7 @@ public class DueDate1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DueDate1 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EarlyPayment1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EarlyPayment1.java
index 024e43689..3fda56ffb 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EarlyPayment1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EarlyPayment1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@
})
public class EarlyPayment1 {
- @XmlElement(name = "EarlyPmtDt", required = true)
+ @XmlElement(name = "EarlyPmtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlyPmtDt;
@XmlElement(name = "DscntPct", required = true)
@@ -52,7 +55,7 @@ public class EarlyPayment1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlyPmtDt() {
@@ -64,7 +67,7 @@ public XMLGregorianCalendar getEarlyPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public EarlyPayment1 setEarlyPmtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EquityReturnParameter1Code.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EquityReturnParameter1Code.java
index 2165c6889..cb47aa69f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EquityReturnParameter1Code.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EquityReturnParameter1Code.java
@@ -28,25 +28,25 @@ public enum EquityReturnParameter1Code {
/**
- * Equity derivative parameter Return Dividend.
+ * Equity derivative parameter Return Dividend.
*
*/
PRDV,
/**
- * Equity derivative parameter Return Variance.
+ * Equity derivative parameter Return Variance.
*
*/
PRVA,
/**
- * Equity derivative parameter Return Volatility.
+ * Equity derivative parameter Return Volatility.
*
*/
PRVO,
/**
- * Equity derivative parameter Price Return Basis Performance.
+ * Equity derivative parameter Price Return Basis Performance.
*
*/
PRBP;
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentContractType1Code.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentContractType1Code.java
index 9f64cfb2f..bcba8ba93 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentContractType1Code.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentContractType1Code.java
@@ -70,7 +70,7 @@ public enum FinancialInstrumentContractType1Code {
OPTN,
/**
- * Contract of other financial instrument contract type.
+ * Contract of other financial instrument contract type.
*
*/
OTHR,
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedTermContract2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedTermContract2.java
index 4b9d2f344..7e6da0d67 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedTermContract2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedTermContract2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class FixedTermContract2 {
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TermntnOptn")
@@ -38,7 +41,7 @@ public class FixedTermContract2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -50,7 +53,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FixedTermContract2 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction2.java
index 8f2a41213..5aee63023 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,10 +56,12 @@ public class ForeignExchangeSwapTransaction2 {
protected CounterpartyIdentification2Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SpotValDt", required = true)
+ @XmlElement(name = "SpotValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar spotValDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -250,7 +254,7 @@ public ForeignExchangeSwapTransaction2 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSpotValDt() {
@@ -262,7 +266,7 @@ public XMLGregorianCalendar getSpotValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeSwapTransaction2 setSpotValDt(XMLGregorianCalendar value) {
@@ -275,7 +279,7 @@ public ForeignExchangeSwapTransaction2 setSpotValDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -287,7 +291,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeSwapTransaction2 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction3.java
index 0f80a81f5..a85f98a09 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeSwapTransaction3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,10 +63,12 @@ public class ForeignExchangeSwapTransaction3 {
protected CounterpartyIdentification3Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SpotValDt", required = true)
+ @XmlElement(name = "SpotValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar spotValDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -307,7 +311,7 @@ public ForeignExchangeSwapTransaction3 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSpotValDt() {
@@ -319,7 +323,7 @@ public XMLGregorianCalendar getSpotValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeSwapTransaction3 setSpotValDt(XMLGregorianCalendar value) {
@@ -332,7 +336,7 @@ public ForeignExchangeSwapTransaction3 setSpotValDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -344,7 +348,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeSwapTransaction3 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms36.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms36.java
index f68b087f5..06b3882e8 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms36.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms36.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class ForeignExchangeTerms36 {
protected String qtdCcy;
@XmlElement(name = "XchgRate", required = true)
protected BigDecimal xchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@XmlElement(name = "QtgInstn")
@@ -122,7 +125,7 @@ public ForeignExchangeTerms36 setXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -134,7 +137,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeTerms36 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader69.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader69.java
index 7bf669ca3..61294caa1 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader69.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader69.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class GroupHeader69 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "IssdDt", required = true)
+ @XmlElement(name = "IssdDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar issdDt;
@XmlElement(name = "RptCtgy", required = true)
@@ -80,7 +83,7 @@ public GroupHeader69 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIssdDt() {
@@ -92,7 +95,7 @@ public XMLGregorianCalendar getIssdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader69 setIssdDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InflationIndex1Choice.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InflationIndex1Choice.java
index 37a31d925..9dfc3b979 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InflationIndex1Choice.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InflationIndex1Choice.java
@@ -12,7 +12,7 @@
/**
- * Choice of an inflation index identification.
+ * Choice of an inflation index identification.
*
*
*
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange1.java
index de073e469..4f5067f5e 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class InterestPaymentDateRange1 {
@XmlElement(name = "IntrstSchdlId")
protected String intrstSchdlId;
- @XmlElement(name = "XpctdDt")
+ @XmlElement(name = "XpctdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdDt;
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@@ -66,7 +70,7 @@ public InterestPaymentDateRange1 setIntrstSchdlId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getXpctdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestPaymentDateRange1 setXpctdDt(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public InterestPaymentDateRange1 setXpctdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestPaymentDateRange1 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange2.java
index 4b5ad82ba..1a7397bb9 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestPaymentDateRange2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class InterestPaymentDateRange2 {
protected String intrstSchdlId;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "DueDt", required = true)
+ @XmlElement(name = "DueDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "AddtlInf")
@@ -93,7 +96,7 @@ public InterestPaymentDateRange2 setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -105,7 +108,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestPaymentDateRange2 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestRateDerivative5.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestRateDerivative5.java
index 2764fbb08..ab0abbb4e 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestRateDerivative5.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestRateDerivative5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class InterestRateDerivative5 {
protected BondDerivative2 undrlygBd;
@XmlElement(name = "SwptnNtnlCcy")
protected String swptnNtnlCcy;
- @XmlElement(name = "UndrlygSwpMtrtyDt")
+ @XmlElement(name = "UndrlygSwpMtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar undrlygSwpMtrtyDt;
@XmlElement(name = "InfltnIndx")
@@ -124,7 +127,7 @@ public InterestRateDerivative5 setSwptnNtnlCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getUndrlygSwpMtrtyDt() {
@@ -136,7 +139,7 @@ public XMLGregorianCalendar getUndrlygSwpMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestRateDerivative5 setUndrlygSwpMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LegalOrganisation2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LegalOrganisation2.java
index a5629449f..c88e11352 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LegalOrganisation2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LegalOrganisation2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class LegalOrganisation2 {
protected String id;
@XmlElement(name = "Nm")
protected String nm;
- @XmlElement(name = "EstblishmtDt")
+ @XmlElement(name = "EstblishmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar estblishmtDt;
- @XmlElement(name = "RegnDt")
+ @XmlElement(name = "RegnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@@ -94,7 +98,7 @@ public LegalOrganisation2 setNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEstblishmtDt() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getEstblishmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LegalOrganisation2 setEstblishmtDt(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public LegalOrganisation2 setEstblishmtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRegnDt() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getRegnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LegalOrganisation2 setRegnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContract1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContract1.java
index f1c937032..6a35d34fe 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContract1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContract1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,12 +54,14 @@ public class LoanContract1 {
protected List sellr;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "PrlngtnFlg")
protected boolean prlngtnFlg;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "SttlmCcy", required = true)
@@ -196,7 +200,7 @@ public LoanContract1 setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -208,7 +212,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanContract1 setMtrtyDt(XMLGregorianCalendar value) {
@@ -238,7 +242,7 @@ public LoanContract1 setPrlngtnFlg(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -250,7 +254,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanContract1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContractTranche1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContractTranche1.java
index 258e231bb..68ea691d9 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContractTranche1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanContractTranche1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,12 +35,14 @@ public class LoanContractTranche1 {
@XmlElement(name = "TrchNb", required = true)
protected BigDecimal trchNb;
- @XmlElement(name = "XpctdDt", required = true)
+ @XmlElement(name = "XpctdDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdDt;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "DrtnCd")
@@ -76,7 +80,7 @@ public LoanContractTranche1 setTrchNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdDt() {
@@ -88,7 +92,7 @@ public XMLGregorianCalendar getXpctdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanContractTranche1 setXpctdDt(XMLGregorianCalendar value) {
@@ -126,7 +130,7 @@ public LoanContractTranche1 setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -138,7 +142,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanContractTranche1 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData1.java
index ce44719b0..3ebfe5427 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,12 +47,14 @@ public class LoanData1 {
protected String tradgVn;
@XmlElement(name = "MstrAgrmt")
protected MasterAgreement1 mstrAgrmt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "MinNtcePrd")
protected BigDecimal minNtcePrd;
- @XmlElement(name = "EarlstCallBckDt")
+ @XmlElement(name = "EarlstCallBckDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlstCallBckDt;
@XmlElement(name = "GnlColl")
@@ -148,7 +152,7 @@ public LoanData1 setMstrAgrmt(MasterAgreement1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -160,7 +164,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData1 setValDt(XMLGregorianCalendar value) {
@@ -198,7 +202,7 @@ public LoanData1 setMinNtcePrd(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlstCallBckDt() {
@@ -210,7 +214,7 @@ public XMLGregorianCalendar getEarlstCallBckDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData1 setEarlstCallBckDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData11.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData11.java
index 3991c9ee3..987508321 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData11.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class LoanData11 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
- @XmlElement(name = "TermntnDt", required = true)
+ @XmlElement(name = "TermntnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar termntnDt;
@@ -66,7 +70,7 @@ public LoanData11 setUnqTradIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData11 setEvtDt(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public LoanData11 setEvtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTermntnDt() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getTermntnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData11 setTermntnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData2.java
index c9003a035..626c7ebfa 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +40,12 @@ public class LoanData2 {
protected String tradgVn;
@XmlElement(name = "MstrAgrmt")
protected MasterAgreement1 mstrAgrmt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "GnlColl")
@@ -132,7 +136,7 @@ public LoanData2 setMstrAgrmt(MasterAgreement1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -144,7 +148,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData2 setValDt(XMLGregorianCalendar value) {
@@ -157,7 +161,7 @@ public LoanData2 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -169,7 +173,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData2 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData27.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData27.java
index 94565d5b1..5ef842cd7 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData27.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData27.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class LoanData27 {
@XmlElement(name = "PrncplAmt", required = true)
protected PrincipalAmount1 prncplAmt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@@ -62,7 +65,7 @@ public LoanData27 setPrncplAmt(PrincipalAmount1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData27 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData39.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData39.java
index 210d70605..8d3079f03 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData39.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData39.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class LoanData39 {
protected String tradgVn;
@XmlElement(name = "MstrAgrmt")
protected MasterAgreement1 mstrAgrmt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "GnlColl")
@@ -150,7 +153,7 @@ public LoanData39 setMstrAgrmt(MasterAgreement1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -162,7 +165,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData39 setValDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData4.java
index c2276fb57..b1a0273fe 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class LoanData4 {
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "TxLnData", required = true)
@@ -37,7 +40,7 @@ public class LoanData4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData4 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData40.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData40.java
index 18284f9fa..0ed31e415 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData40.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData40.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class LoanData40 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrctTp", required = true)
@@ -50,13 +54,16 @@ public class LoanData40 {
protected String tradgVn;
@XmlElement(name = "MstrAgrmt")
protected MasterAgreement1 mstrAgrmt;
- @XmlElement(name = "ExctnDtTm", required = true)
+ @XmlElement(name = "ExctnDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exctnDtTm;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "TermntnDt", required = true)
+ @XmlElement(name = "TermntnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar termntnDt;
@XmlElement(name = "GnlColl")
@@ -97,7 +104,7 @@ public LoanData40 setUnqTradIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -109,7 +116,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData40 setEvtDt(XMLGregorianCalendar value) {
@@ -222,7 +229,7 @@ public LoanData40 setMstrAgrmt(MasterAgreement1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getExctnDtTm() {
@@ -234,7 +241,7 @@ public XMLGregorianCalendar getExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData40 setExctnDtTm(XMLGregorianCalendar value) {
@@ -247,7 +254,7 @@ public LoanData40 setExctnDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -259,7 +266,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData40 setValDt(XMLGregorianCalendar value) {
@@ -272,7 +279,7 @@ public LoanData40 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTermntnDt() {
@@ -284,7 +291,7 @@ public XMLGregorianCalendar getTermntnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData40 setTermntnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData42.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData42.java
index 7352f0a5d..f0ea86c5c 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData42.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData42.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class LoanData42 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrctTp")
@@ -69,7 +72,7 @@ public LoanData42 setUnqTradIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -81,7 +84,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData42 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData43.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData43.java
index fdceb3941..3983d4a87 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData43.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData43.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,16 +35,19 @@ public class LoanData43 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrctTp")
@XmlSchemaType(name = "string")
protected ExposureType6Code ctrctTp;
- @XmlElement(name = "ExctnDtTm")
+ @XmlElement(name = "ExctnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exctnDtTm;
- @XmlElement(name = "TermntnDt")
+ @XmlElement(name = "TermntnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar termntnDt;
@XmlElement(name = "TxSpcfcData", required = true)
@@ -77,7 +83,7 @@ public LoanData43 setUnqTradIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -89,7 +95,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData43 setEvtDt(XMLGregorianCalendar value) {
@@ -127,7 +133,7 @@ public LoanData43 setCtrctTp(ExposureType6Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getExctnDtTm() {
@@ -139,7 +145,7 @@ public XMLGregorianCalendar getExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData43 setExctnDtTm(XMLGregorianCalendar value) {
@@ -152,7 +158,7 @@ public LoanData43 setExctnDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTermntnDt() {
@@ -164,7 +170,7 @@ public XMLGregorianCalendar getTermntnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData43 setTermntnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData44.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData44.java
index 14501c437..66e67e476 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData44.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LoanData44.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,13 +34,15 @@ public class LoanData44 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrctTp", required = true)
@XmlSchemaType(name = "string")
protected ExposureType6Code ctrctTp;
- @XmlElement(name = "ExctnDtTm", required = true)
+ @XmlElement(name = "ExctnDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exctnDtTm;
@XmlElement(name = "TxLnData", required = true)
@@ -73,7 +78,7 @@ public LoanData44 setUnqTradIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -85,7 +90,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData44 setEvtDt(XMLGregorianCalendar value) {
@@ -123,7 +128,7 @@ public LoanData44 setCtrctTp(ExposureType6Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getExctnDtTm() {
@@ -135,7 +140,7 @@ public XMLGregorianCalendar getExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LoanData44 setExctnDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification92.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification92.java
index b33f4b476..c78944a65 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification92.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification92.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,15 +70,18 @@ public class MarketIdentification92 {
@XmlElement(name = "Mod")
@XmlSchemaType(name = "string")
protected Modification1Code mod;
- @XmlElement(name = "CreDt")
+ @XmlElement(name = "CreDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar creDt;
@XmlElement(name = "VldtyPrd", required = true)
protected Period4Choice vldtyPrd;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar stsDt;
- @XmlElement(name = "LastUpdtdDt")
+ @XmlElement(name = "LastUpdtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpdtdDt;
@@ -384,7 +390,7 @@ public MarketIdentification92 setMod(Modification1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDt() {
@@ -396,7 +402,7 @@ public XMLGregorianCalendar getCreDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification92 setCreDt(XMLGregorianCalendar value) {
@@ -434,7 +440,7 @@ public MarketIdentification92 setVldtyPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -446,7 +452,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification92 setStsDt(XMLGregorianCalendar value) {
@@ -459,7 +465,7 @@ public MarketIdentification92 setStsDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpdtdDt() {
@@ -471,7 +477,7 @@ public XMLGregorianCalendar getLastUpdtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification92 setLastUpdtdDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification95.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification95.java
index 0294d17a8..24cc332fb 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification95.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MarketIdentification95.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,15 +70,18 @@ public class MarketIdentification95 {
@XmlElement(name = "Mod")
@XmlSchemaType(name = "string")
protected Modification1Code mod;
- @XmlElement(name = "CreDt")
+ @XmlElement(name = "CreDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar creDt;
@XmlElement(name = "VldtyPrd", required = true)
protected Period4Choice vldtyPrd;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar stsDt;
- @XmlElement(name = "LastUpdtdDt")
+ @XmlElement(name = "LastUpdtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpdtdDt;
@@ -384,7 +390,7 @@ public MarketIdentification95 setMod(Modification1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDt() {
@@ -396,7 +402,7 @@ public XMLGregorianCalendar getCreDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification95 setCreDt(XMLGregorianCalendar value) {
@@ -434,7 +440,7 @@ public MarketIdentification95 setVldtyPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -446,7 +452,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification95 setStsDt(XMLGregorianCalendar value) {
@@ -459,7 +465,7 @@ public MarketIdentification95 setStsDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpdtdDt() {
@@ -471,7 +477,7 @@ public XMLGregorianCalendar getLastUpdtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MarketIdentification95 setLastUpdtdDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MaturingAssetThresholdEvent1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MaturingAssetThresholdEvent1.java
index 8b1a040c8..5d96d8c11 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MaturingAssetThresholdEvent1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MaturingAssetThresholdEvent1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class MaturingAssetThresholdEvent1 {
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
- @XmlElement(name = "MeasrDt", required = true)
+ @XmlElement(name = "MeasrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar measrDt;
@XmlElement(name = "MeasrInf", required = true)
@@ -41,7 +45,7 @@ public class MaturingAssetThresholdEvent1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MaturingAssetThresholdEvent1 setEvtDt(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public MaturingAssetThresholdEvent1 setEvtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getMeasrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MaturingAssetThresholdEvent1 setMeasrDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionDateOrPeriod1Choice.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionDateOrPeriod1Choice.java
index 076a43562..ba443a12d 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionDateOrPeriod1Choice.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionDateOrPeriod1Choice.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class OptionDateOrPeriod1Choice {
- @XmlElement(name = "EarlstExrcDt")
+ @XmlElement(name = "EarlstExrcDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlstExrcDt;
@XmlElement(name = "NtcePrd")
@@ -38,7 +41,7 @@ public class OptionDateOrPeriod1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlstExrcDt() {
@@ -50,7 +53,7 @@ public XMLGregorianCalendar getEarlstExrcDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OptionDateOrPeriod1Choice setEarlstExrcDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage2.java
index ea110f304..76f14081e 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class OriginalMessage2 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlPackgId")
@@ -124,7 +127,7 @@ public OriginalMessage2 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -136,7 +139,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalMessage2 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage3.java
index ddaaa351e..aebfeed7f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessage3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalMessage3 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@@ -118,7 +121,7 @@ public OriginalMessage3 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalMessage3 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction3.java
index 054e35078..f4a64acba 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,10 +56,12 @@ public class OvernightIndexSwapTransaction3 {
protected CounterpartyIdentification2Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "FxdIntrstRate", required = true)
@@ -250,7 +254,7 @@ public OvernightIndexSwapTransaction3 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -262,7 +266,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OvernightIndexSwapTransaction3 setStartDt(XMLGregorianCalendar value) {
@@ -275,7 +279,7 @@ public OvernightIndexSwapTransaction3 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -287,7 +291,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OvernightIndexSwapTransaction3 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction4.java
index 036e428ff..99733cf7a 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OvernightIndexSwapTransaction4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,10 +64,12 @@ public class OvernightIndexSwapTransaction4 {
protected CounterpartyIdentification3Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "FxdIntrstRate", required = true)
@@ -308,7 +312,7 @@ public OvernightIndexSwapTransaction4 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -320,7 +324,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OvernightIndexSwapTransaction4 setStartDt(XMLGregorianCalendar value) {
@@ -333,7 +337,7 @@ public OvernightIndexSwapTransaction4 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -345,7 +349,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OvernightIndexSwapTransaction4 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange1.java
index 24e9f8338..d11a5a43b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class PaymentDateRange1 {
@XmlElement(name = "PmtSchdlId")
protected String pmtSchdlId;
- @XmlElement(name = "XpctdDt")
+ @XmlElement(name = "XpctdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdDt;
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@@ -66,7 +70,7 @@ public PaymentDateRange1 setPmtSchdlId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getXpctdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDateRange1 setXpctdDt(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public PaymentDateRange1 setXpctdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDateRange1 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange2.java
index 45089e25b..1621ff602 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDateRange2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class PaymentDateRange2 {
protected String pmtSchdlId;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "XpctdDt")
+ @XmlElement(name = "XpctdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdDt;
- @XmlElement(name = "DueDt", required = true)
+ @XmlElement(name = "DueDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@@ -94,7 +98,7 @@ public PaymentDateRange2 setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdDt() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getXpctdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDateRange2 setXpctdDt(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public PaymentDateRange2 setXpctdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDateRange2 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period4Choice.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period4Choice.java
index 60e3a5b49..41489ded7 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period4Choice.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period4Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,13 +30,16 @@
})
public class Period4Choice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrDtToDt")
@@ -45,7 +50,7 @@ public class Period4Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -57,7 +62,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Period4Choice setDt(XMLGregorianCalendar value) {
@@ -70,7 +75,7 @@ public Period4Choice setDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -82,7 +87,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Period4Choice setFrDt(XMLGregorianCalendar value) {
@@ -95,7 +100,7 @@ public Period4Choice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -107,7 +112,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Period4Choice setToDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PersonIdentification10.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PersonIdentification10.java
index 7f4fbf88a..bb4e9b8e1 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PersonIdentification10.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PersonIdentification10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class PersonIdentification10 {
protected String frstNm;
@XmlElement(name = "Nm", required = true)
protected String nm;
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "Othr", required = true)
@@ -93,7 +96,7 @@ public PersonIdentification10 setNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -105,7 +108,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PersonIdentification10 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PositionSetAggregated2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PositionSetAggregated2.java
index 15c1fc0fd..180f76c74 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PositionSetAggregated2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PositionSetAggregated2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class PositionSetAggregated2 {
- @XmlElement(name = "RefDt", required = true)
+ @XmlElement(name = "RefDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar refDt;
@XmlElement(name = "PosSet")
@@ -48,7 +51,7 @@ public class PositionSetAggregated2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRefDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getRefDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PositionSetAggregated2 setRefDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProductType5Code.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProductType5Code.java
index cd04c6aeb..2803e91fb 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProductType5Code.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProductType5Code.java
@@ -30,7 +30,7 @@ public enum ProductType5Code {
/**
- * Identifies categories of instruments related to Emission Allowance
+ * Identifies categories of instruments related to Emission Allowance.
*
*/
EMAL,
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAdjustment1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAdjustment1.java
index 2dbf59da5..80c32976f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAdjustment1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RateAdjustment1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class RateAdjustment1 {
@XmlElement(name = "Rate", required = true)
protected BigDecimal rate;
- @XmlElement(name = "AdjstmntDt", required = true)
+ @XmlElement(name = "AdjstmntDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar adjstmntDt;
@@ -63,7 +66,7 @@ public RateAdjustment1 setRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAdjstmntDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RateAdjustment1 setAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData1.java
index 0c8bb42f0..a7448df12 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class RecordTechnicalData1 {
- @XmlElement(name = "RctDtTm", required = true)
+ @XmlElement(name = "RctDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rctDtTm;
@XmlElement(name = "XchgRsn", required = true)
@@ -40,7 +43,7 @@ public class RecordTechnicalData1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRctDtTm() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getRctDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData1 setRctDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData2.java
index 960e17b17..3188156d9 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class RecordTechnicalData2 {
- @XmlElement(name = "RctDtTm", required = true)
+ @XmlElement(name = "RctDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rctDtTm;
@XmlElement(name = "CxlRsn", required = true)
@@ -38,7 +41,7 @@ public class RecordTechnicalData2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRctDtTm() {
@@ -50,7 +53,7 @@ public XMLGregorianCalendar getRctDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData2 setRctDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData3.java
index cda19d8fc..65939a949 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class RecordTechnicalData3 {
@XmlElement(name = "IncnsstncyInd")
protected Boolean incnsstncyInd;
- @XmlElement(name = "LastUpd")
+ @XmlElement(name = "LastUpd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpd;
- @XmlElement(name = "SubmissnDtTm")
+ @XmlElement(name = "SubmissnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar submissnDtTm;
@XmlElement(name = "RlvntCmptntAuthrty")
@@ -75,7 +79,7 @@ public RecordTechnicalData3 setIncnsstncyInd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpd() {
@@ -87,7 +91,7 @@ public XMLGregorianCalendar getLastUpd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData3 setLastUpd(XMLGregorianCalendar value) {
@@ -100,7 +104,7 @@ public RecordTechnicalData3 setLastUpd(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSubmissnDtTm() {
@@ -112,7 +116,7 @@ public XMLGregorianCalendar getSubmissnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData3 setSubmissnDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData4.java
index 2ebc2423b..eb398d80a 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecordTechnicalData4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class RecordTechnicalData4 {
@XmlElement(name = "IncnsstncyInd")
protected Boolean incnsstncyInd;
- @XmlElement(name = "LastUpd")
+ @XmlElement(name = "LastUpd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpd;
- @XmlElement(name = "SubmissnDtTm")
+ @XmlElement(name = "SubmissnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar submissnDtTm;
@XmlElement(name = "RlvntCmptntAuthrty")
@@ -78,7 +82,7 @@ public RecordTechnicalData4 setIncnsstncyInd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpd() {
@@ -90,7 +94,7 @@ public XMLGregorianCalendar getLastUpd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData4 setLastUpd(XMLGregorianCalendar value) {
@@ -103,7 +107,7 @@ public RecordTechnicalData4 setLastUpd(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSubmissnDtTm() {
@@ -115,7 +119,7 @@ public XMLGregorianCalendar getSubmissnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecordTechnicalData4 setSubmissnDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractAmendment1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractAmendment1.java
index 0723956b4..b653e50e5 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractAmendment1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractAmendment1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,12 +31,14 @@
})
public class RegisteredContractAmendment1 {
- @XmlElement(name = "AmdmntDt", required = true)
+ @XmlElement(name = "AmdmntDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar amdmntDt;
@XmlElement(name = "Doc", required = true)
protected DocumentIdentification28 doc;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "AmdmntRsn")
@@ -47,7 +51,7 @@ public class RegisteredContractAmendment1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAmdmntDt() {
@@ -59,7 +63,7 @@ public XMLGregorianCalendar getAmdmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegisteredContractAmendment1 setAmdmntDt(XMLGregorianCalendar value) {
@@ -97,7 +101,7 @@ public RegisteredContractAmendment1 setDoc(DocumentIdentification28 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -109,7 +113,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegisteredContractAmendment1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractCommunication1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractCommunication1.java
index 160fc1ad3..0734400e3 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractCommunication1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractCommunication1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class RegisteredContractCommunication1 {
@XmlElement(name = "Mtd", required = true)
@XmlSchemaType(name = "string")
protected CommunicationMethod4Code mtd;
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -63,7 +66,7 @@ public RegisteredContractCommunication1 setMtd(CommunicationMethod4Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegisteredContractCommunication1 setDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractJournal1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractJournal1.java
index 326d9345a..9c8fa11c9 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractJournal1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegisteredContractJournal1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class RegisteredContractJournal1 {
protected BranchAndFinancialInstitutionIdentification5 regnAgt;
@XmlElement(name = "UnqId")
protected DocumentIdentification28 unqId;
- @XmlElement(name = "ClsrDt", required = true)
+ @XmlElement(name = "ClsrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsrDt;
@XmlElement(name = "ClsrRsn", required = true)
@@ -93,7 +96,7 @@ public RegisteredContractJournal1 setUnqId(DocumentIdentification28 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsrDt() {
@@ -105,7 +108,7 @@ public XMLGregorianCalendar getClsrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegisteredContractJournal1 setClsrDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedEvent2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedEvent2.java
index 61c9a11e3..ecb41598b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedEvent2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RelatedEvent2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,13 +30,16 @@
})
public class RelatedEvent2 {
- @XmlElement(name = "IncptnDt")
+ @XmlElement(name = "IncptnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar incptnDt;
- @XmlElement(name = "MrgrDt")
+ @XmlElement(name = "MrgrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mrgrDt;
- @XmlElement(name = "LqdtnDt")
+ @XmlElement(name = "LqdtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lqdtnDt;
@XmlElement(name = "LastRptSnt")
@@ -45,7 +50,7 @@ public class RelatedEvent2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIncptnDt() {
@@ -57,7 +62,7 @@ public XMLGregorianCalendar getIncptnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RelatedEvent2 setIncptnDt(XMLGregorianCalendar value) {
@@ -70,7 +75,7 @@ public RelatedEvent2 setIncptnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMrgrDt() {
@@ -82,7 +87,7 @@ public XMLGregorianCalendar getMrgrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RelatedEvent2 setMrgrDt(XMLGregorianCalendar value) {
@@ -95,7 +100,7 @@ public RelatedEvent2 setMrgrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLqdtnDt() {
@@ -107,7 +112,7 @@ public XMLGregorianCalendar getLqdtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RelatedEvent2 setLqdtnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection3.java
index a88a836d8..cdac42586 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection3.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +48,12 @@ public class ReuseDataReportCorrection3 {
protected List collCmpnt;
@XmlElement(name = "CshRinvstmtRate")
protected BigDecimal cshRinvstmtRate;
- @XmlElement(name = "EvtDay", required = true)
+ @XmlElement(name = "EvtDay", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDay;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "FndgSrc")
@@ -169,7 +174,7 @@ public ReuseDataReportCorrection3 setCshRinvstmtRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDay() {
@@ -181,7 +186,7 @@ public XMLGregorianCalendar getEvtDay() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportCorrection3 setEvtDay(XMLGregorianCalendar value) {
@@ -194,7 +199,7 @@ public ReuseDataReportCorrection3 setEvtDay(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -206,7 +211,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportCorrection3 setRptgDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection4.java
index 813e0913f..c6966ec3e 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportCorrection4.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class ReuseDataReportCorrection4 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "CtrPtyData", required = true)
protected CounterpartyData46 ctrPtyData;
@XmlElement(name = "CollCmpnt", required = true)
protected List collCmpnt;
- @XmlElement(name = "EvtDay", required = true)
+ @XmlElement(name = "EvtDay", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDay;
@XmlElement(name = "FndgSrc")
@@ -80,7 +85,7 @@ public ReuseDataReportCorrection4 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -92,7 +97,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportCorrection4 setRptgDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public List getCollCmpnt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDay() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getEvtDay() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportCorrection4 setEvtDay(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportError2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportError2.java
index 47f87872c..41bb59492 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportError2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportError2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class ReuseDataReportError2 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "CtrPtyData", required = true)
@@ -70,7 +73,7 @@ public ReuseDataReportError2 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -82,7 +85,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportError2 setRptgDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportNew2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportNew2.java
index 768b95bbe..bdd4dbe16 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportNew2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReuseDataReportNew2.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class ReuseDataReportNew2 {
@XmlElement(name = "TechRcrdId", required = true)
protected String techRcrdId;
- @XmlElement(name = "RptgDtTm", required = true)
+ @XmlElement(name = "RptgDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDtTm;
@XmlElement(name = "CtrPtyData", required = true)
protected CounterpartyData46 ctrPtyData;
@XmlElement(name = "CollCmpnt", required = true)
protected List collCmpnt;
- @XmlElement(name = "EvtDay", required = true)
+ @XmlElement(name = "EvtDay", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDay;
@XmlElement(name = "FndgSrc")
@@ -80,7 +85,7 @@ public ReuseDataReportNew2 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDtTm() {
@@ -92,7 +97,7 @@ public XMLGregorianCalendar getRptgDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportNew2 setRptgDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public List getCollCmpnt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDay() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getEvtDay() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReuseDataReportNew2 setEvtDay(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction3.java
index 79add1088..690c02edc 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,10 +63,12 @@ public class SecuredMarketTransaction3 {
protected String trptyAgtId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -292,7 +296,7 @@ public SecuredMarketTransaction3 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -304,7 +308,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuredMarketTransaction3 setSttlmDt(XMLGregorianCalendar value) {
@@ -317,7 +321,7 @@ public SecuredMarketTransaction3 setSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -329,7 +333,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuredMarketTransaction3 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction4.java
index 8a9a66c65..a5425f027 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuredMarketTransaction4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,10 +71,12 @@ public class SecuredMarketTransaction4 {
protected String trptyAgtId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -350,7 +354,7 @@ public SecuredMarketTransaction4 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -362,7 +366,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuredMarketTransaction4 setSttlmDt(XMLGregorianCalendar value) {
@@ -375,7 +379,7 @@ public SecuredMarketTransaction4 setSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -387,7 +391,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuredMarketTransaction4 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCountryIdentification2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCountryIdentification2.java
index 1ddfd412b..a5b019163 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCountryIdentification2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCountryIdentification2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class SecuritiesCountryIdentification2 {
protected Modification1Code mod;
@XmlElement(name = "VldtyPrd", required = true)
protected Period4Choice vldtyPrd;
- @XmlElement(name = "LastUpdtd")
+ @XmlElement(name = "LastUpdtd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastUpdtd;
@@ -139,7 +142,7 @@ public SecuritiesCountryIdentification2 setVldtyPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpdtd() {
@@ -151,7 +154,7 @@ public XMLGregorianCalendar getLastUpdtd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCountryIdentification2 setLastUpdtd(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCurrencyIdentification2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCurrencyIdentification2.java
index bc08a9f0f..debb3fb40 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCurrencyIdentification2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCurrencyIdentification2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class SecuritiesCurrencyIdentification2 {
protected Modification1Code mod;
@XmlElement(name = "VldtyPrd", required = true)
protected Period4Choice vldtyPrd;
- @XmlElement(name = "LastUpdtd")
+ @XmlElement(name = "LastUpdtd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastUpdtd;
@@ -196,7 +199,7 @@ public SecuritiesCurrencyIdentification2 setVldtyPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpdtd() {
@@ -208,7 +211,7 @@ public XMLGregorianCalendar getLastUpdtd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCurrencyIdentification2 setLastUpdtd(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesInstrumentClassification2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesInstrumentClassification2.java
index 6765c2dbd..354ab69b1 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesInstrumentClassification2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesInstrumentClassification2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class SecuritiesInstrumentClassification2 {
protected Modification1Code mod;
@XmlElement(name = "VldtyPrd", required = true)
protected Period4Choice vldtyPrd;
- @XmlElement(name = "LastUpdtd")
+ @XmlElement(name = "LastUpdtd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar lastUpdtd;
@@ -119,7 +122,7 @@ public SecuritiesInstrumentClassification2 setVldtyPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastUpdtd() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getLastUpdtd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesInstrumentClassification2 setLastUpdtd(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesMarketReportHeader1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesMarketReportHeader1.java
index 6fa79cc77..d349fbf0d 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesMarketReportHeader1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesMarketReportHeader1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class SecuritiesMarketReportHeader1 {
protected TradingVenueIdentification1Choice rptgNtty;
@XmlElement(name = "RptgPrd", required = true)
protected Period4Choice rptgPrd;
- @XmlElement(name = "SubmissnDtTm")
+ @XmlElement(name = "SubmissnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar submissnDtTm;
@@ -90,7 +93,7 @@ public SecuritiesMarketReportHeader1 setRptgPrd(Period4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSubmissnDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getSubmissnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesMarketReportHeader1 setSubmissnDtTm(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesNonTradingDay1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesNonTradingDay1.java
index b2d529d91..41a94bace 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesNonTradingDay1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesNonTradingDay1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class SecuritiesNonTradingDay1 {
@XmlElement(name = "TechRcrdId")
protected String techRcrdId;
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Rsn")
@@ -66,7 +69,7 @@ public SecuritiesNonTradingDay1 setTechRcrdId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -78,7 +81,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesNonTradingDay1 setDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTransaction1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTransaction1.java
index 6ef6bd646..f51b897fd 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTransaction1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesTransaction1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class SecuritiesTransaction1 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "TradgCpcty", required = true)
@@ -67,7 +70,7 @@ public class SecuritiesTransaction1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -79,7 +82,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesTransaction1 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security3.java
index cdf8a801c..f2cb9af35 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class Security3 {
@XmlElement(name = "Qlty")
@XmlSchemaType(name = "string")
protected CollateralQualityType1Code qlty;
- @XmlElement(name = "Mtrty")
+ @XmlElement(name = "Mtrty", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrty;
@XmlElement(name = "Issr")
@@ -241,7 +244,7 @@ public Security3 setQlty(CollateralQualityType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrty() {
@@ -253,7 +256,7 @@ public XMLGregorianCalendar getMtrty() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Security3 setMtrty(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security4.java
index ea7a2b8c7..c11edd111 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Security4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class Security4 {
@XmlElement(name = "Qlty")
@XmlSchemaType(name = "string")
protected CollateralQualityType1Code qlty;
- @XmlElement(name = "Mtrty")
+ @XmlElement(name = "Mtrty", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrty;
@XmlElement(name = "Issr")
@@ -165,7 +168,7 @@ public Security4 setQlty(CollateralQualityType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrty() {
@@ -177,7 +180,7 @@ public XMLGregorianCalendar getMtrty() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Security4 setMtrty(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription2.java
index 8ba20cfeb..37c8da12b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecurityInstrumentDescription2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,10 +41,12 @@ public class SecurityInstrumentDescription2 {
protected SecurityClassificationType1Choice clssfctnTp;
@XmlElement(name = "PlcOfListg")
protected String plcOfListg;
- @XmlElement(name = "ExrcDt")
+ @XmlElement(name = "ExrcDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar exrcDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "OptnTp")
@@ -133,7 +137,7 @@ public SecurityInstrumentDescription2 setPlcOfListg(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getExrcDt() {
@@ -145,7 +149,7 @@ public XMLGregorianCalendar getExrcDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecurityInstrumentDescription2 setExrcDt(XMLGregorianCalendar value) {
@@ -158,7 +162,7 @@ public SecurityInstrumentDescription2 setExrcDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -170,7 +174,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecurityInstrumentDescription2 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementInternaliserReportHeader1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementInternaliserReportHeader1.java
index d78f148ea..68cc5ab3f 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementInternaliserReportHeader1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementInternaliserReportHeader1.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,10 +31,12 @@
})
public class SettlementInternaliserReportHeader1 {
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
- @XmlElement(name = "RptgDt", required = true)
+ @XmlElement(name = "RptgDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
@XmlElement(name = "Ccy", required = true)
@@ -45,7 +50,7 @@ public class SettlementInternaliserReportHeader1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -57,7 +62,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementInternaliserReportHeader1 setCreDtTm(XMLGregorianCalendar value) {
@@ -70,7 +75,7 @@ public SettlementInternaliserReportHeader1 setCreDtTm(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -82,7 +87,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementInternaliserReportHeader1 setRptgDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentAttribute1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentAttribute1.java
index d0f0575dc..02bc82c1a 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentAttribute1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentAttribute1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ShipmentAttribute1 {
@XmlElement(name = "Conds")
protected String conds;
- @XmlElement(name = "XpctdDt")
+ @XmlElement(name = "XpctdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdDt;
@XmlElement(name = "CtryOfCntrPty", required = true)
@@ -65,7 +68,7 @@ public ShipmentAttribute1 setConds(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getXpctdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShipmentAttribute1 setXpctdDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusAdviceReport3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusAdviceReport3.java
index 30dfa6147..61aadd0a0 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusAdviceReport3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusAdviceReport3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class StatusAdviceReport3 {
protected ReportingMessageStatus1Code sts;
@XmlElement(name = "VldtnRule")
protected List vldtnRule;
- @XmlElement(name = "MsgDt")
+ @XmlElement(name = "MsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar msgDt;
@XmlElement(name = "Sttstcs")
@@ -100,7 +103,7 @@ public List getVldtnRule() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMsgDt() {
@@ -112,7 +115,7 @@ public XMLGregorianCalendar getMsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusAdviceReport3 setMsgDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StressTestResult2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StressTestResult2.java
index 1336c3262..651947c89 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StressTestResult2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StressTestResult2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class StressTestResult2 {
- @XmlElement(name = "StrssTstDt", required = true)
+ @XmlElement(name = "StrssTstDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar strssTstDt;
@XmlElement(name = "StrssTstFctrTp")
@@ -54,7 +57,7 @@ public class StressTestResult2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStrssTstDt() {
@@ -66,7 +69,7 @@ public XMLGregorianCalendar getStrssTstDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StressTestResult2 setStrssTstDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SupportingDocumentRequestOrLetter1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SupportingDocumentRequestOrLetter1.java
index 38f92a820..8578f8514 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SupportingDocumentRequestOrLetter1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SupportingDocumentRequestOrLetter1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class SupportingDocumentRequestOrLetter1 {
@XmlElement(name = "ReqOrLttrId", required = true)
protected String reqOrLttrId;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Sndr")
@@ -58,7 +61,8 @@ public class SupportingDocumentRequestOrLetter1 {
protected String desc;
@XmlElement(name = "RspnReqrd")
protected boolean rspnReqrd;
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "Attchmnt")
@@ -96,7 +100,7 @@ public SupportingDocumentRequestOrLetter1 setReqOrLttrId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -108,7 +112,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SupportingDocumentRequestOrLetter1 setDt(XMLGregorianCalendar value) {
@@ -292,7 +296,7 @@ public SupportingDocumentRequestOrLetter1 setRspnReqrd(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -304,7 +308,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SupportingDocumentRequestOrLetter1 setDueDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeContract1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeContract1.java
index 7a699aa52..f1a356d34 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeContract1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeContract1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,12 +48,14 @@ public class TradeContract1 {
protected List buyr;
@XmlElement(name = "Sellr", required = true)
protected List sellr;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "PrlngtnFlg")
protected boolean prlngtnFlg;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "SttlmCcy", required = true)
@@ -178,7 +182,7 @@ public List getSellr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -190,7 +194,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeContract1 setMtrtyDt(XMLGregorianCalendar value) {
@@ -220,7 +224,7 @@ public TradeContract1 setPrlngtnFlg(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -232,7 +236,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeContract1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRecurrentQuery3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRecurrentQuery3.java
index 4dbca36fb..9d78cc0d0 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRecurrentQuery3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeRecurrentQuery3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class TradeRecurrentQuery3 {
protected String qryTp;
@XmlElement(name = "Frqcy", required = true)
protected TradeQueryExecutionFrequency1Choice frqcy;
- @XmlElement(name = "VldUntil", required = true)
+ @XmlElement(name = "VldUntil", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldUntil;
@@ -90,7 +93,7 @@ public TradeRecurrentQuery3 setFrqcy(TradeQueryExecutionFrequency1Choice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeRecurrentQuery3 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeSettlement2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeSettlement2.java
index 87c2a8380..19b0bf175 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeSettlement2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeSettlement2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,14 +41,16 @@ public class TradeSettlement2 {
@XmlElement(name = "PmtRef")
protected CreditorReferenceInformation2 pmtRef;
- @XmlElement(name = "DueDt")
+ @XmlElement(name = "DueDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dueDt;
@XmlElement(name = "DuePyblAmt", required = true)
protected CurrencyAndAmount duePyblAmt;
@XmlElement(name = "InvcCcyXchg")
protected CurrencyReference3 invcCcyXchg;
- @XmlElement(name = "DlvryDt")
+ @XmlElement(name = "DlvryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dlvryDt;
@XmlElement(name = "BllgPrd")
@@ -92,7 +96,7 @@ public TradeSettlement2 setPmtRef(CreditorReferenceInformation2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDueDt() {
@@ -104,7 +108,7 @@ public XMLGregorianCalendar getDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeSettlement2 setDueDt(XMLGregorianCalendar value) {
@@ -167,7 +171,7 @@ public TradeSettlement2 setInvcCcyXchg(CurrencyReference3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDt() {
@@ -179,7 +183,7 @@ public XMLGregorianCalendar getDlvryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeSettlement2 setDlvryDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeValuationUpdate2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeValuationUpdate2.java
index d65a9aaa0..95cd3a8d7 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeValuationUpdate2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeValuationUpdate2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class TradeValuationUpdate2 {
protected CounterpartyData48 ctrPtyData;
@XmlElement(name = "UnqTxIdr", required = true)
protected String unqTxIdr;
- @XmlElement(name = "EvtDt", required = true)
+ @XmlElement(name = "EvtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "MktVal", required = true)
@@ -127,7 +130,7 @@ public TradeValuationUpdate2 setUnqTxIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtDt() {
@@ -139,7 +142,7 @@ public XMLGregorianCalendar getEvtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeValuationUpdate2 setEvtDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradingVenueAttributes1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradingVenueAttributes1.java
index 6b4f1d18a..e663966f0 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradingVenueAttributes1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradingVenueAttributes1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,16 +36,20 @@ public class TradingVenueAttributes1 {
protected String id;
@XmlElement(name = "IssrReq")
protected boolean issrReq;
- @XmlElement(name = "AdmssnApprvlDtByIssr")
+ @XmlElement(name = "AdmssnApprvlDtByIssr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar admssnApprvlDtByIssr;
- @XmlElement(name = "ReqForAdmssnDt")
+ @XmlElement(name = "ReqForAdmssnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqForAdmssnDt;
- @XmlElement(name = "FrstTradDt")
+ @XmlElement(name = "FrstTradDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frstTradDt;
- @XmlElement(name = "TermntnDt")
+ @XmlElement(name = "TermntnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar termntnDt;
@@ -94,7 +100,7 @@ public TradingVenueAttributes1 setIssrReq(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAdmssnApprvlDtByIssr() {
@@ -106,7 +112,7 @@ public XMLGregorianCalendar getAdmssnApprvlDtByIssr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradingVenueAttributes1 setAdmssnApprvlDtByIssr(XMLGregorianCalendar value) {
@@ -119,7 +125,7 @@ public TradingVenueAttributes1 setAdmssnApprvlDtByIssr(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqForAdmssnDt() {
@@ -131,7 +137,7 @@ public XMLGregorianCalendar getReqForAdmssnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradingVenueAttributes1 setReqForAdmssnDt(XMLGregorianCalendar value) {
@@ -144,7 +150,7 @@ public TradingVenueAttributes1 setReqForAdmssnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstTradDt() {
@@ -156,7 +162,7 @@ public XMLGregorianCalendar getFrstTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradingVenueAttributes1 setFrstTradDt(XMLGregorianCalendar value) {
@@ -169,7 +175,7 @@ public TradingVenueAttributes1 setFrstTradDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTermntnDt() {
@@ -181,7 +187,7 @@ public XMLGregorianCalendar getTermntnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradingVenueAttributes1 setTermntnDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificate2.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificate2.java
index 6a258ec3a..80a50774d 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificate2.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificate2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class TransactionCertificate2 {
@XmlElement(name = "RfrdDoc", required = true)
protected CertificateReference1 rfrdDoc;
- @XmlElement(name = "TxDt", required = true)
+ @XmlElement(name = "TxDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar txDt;
@XmlElement(name = "TxTp", required = true)
@@ -71,7 +74,7 @@ public TransactionCertificate2 setRfrdDoc(CertificateReference1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDt() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getTxDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionCertificate2 setTxDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificateContract1.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificateContract1.java
index 5727aca2f..fa20306e0 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificateContract1.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionCertificateContract1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class TransactionCertificateContract1 {
protected ContractRegistrationReference1Choice ctrctRef;
@XmlElement(name = "TxAmtInCtrctCcy")
protected ActiveCurrencyAndAmount txAmtInCtrctCcy;
- @XmlElement(name = "XpctdShipmntDt")
+ @XmlElement(name = "XpctdShipmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdShipmntDt;
- @XmlElement(name = "XpctdAdvncPmtRtrDt")
+ @XmlElement(name = "XpctdAdvncPmtRtrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdAdvncPmtRtrDt;
@XmlElement(name = "AddtlInf")
@@ -97,7 +101,7 @@ public TransactionCertificateContract1 setTxAmtInCtrctCcy(ActiveCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdShipmntDt() {
@@ -109,7 +113,7 @@ public XMLGregorianCalendar getXpctdShipmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionCertificateContract1 setXpctdShipmntDt(XMLGregorianCalendar value) {
@@ -122,7 +126,7 @@ public TransactionCertificateContract1 setXpctdShipmntDt(XMLGregorianCalendar va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdAdvncPmtRtrDt() {
@@ -134,7 +138,7 @@ public XMLGregorianCalendar getXpctdAdvncPmtRtrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionCertificateContract1 setXpctdAdvncPmtRtrDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails3.java
index 6a23a2089..50ba81adf 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDetails3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class TransactionDetails3 {
protected List assoctdTradRef;
@XmlElement(name = "PlcOfTrad", required = true)
protected PlaceOfTradeIdentification2Choice plcOfTrad;
- @XmlElement(name = "TradDtTm", required = true)
+ @XmlElement(name = "TradDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradDtTm;
@XmlElement(name = "FinInstrmDtls", required = true)
@@ -71,7 +74,8 @@ public class TransactionDetails3 {
protected UnitOrFaceAmountChoice exctdTradQty;
@XmlElement(name = "SttlmAmt")
protected ActiveCurrencyAndAmount sttlmAmt;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "PrxyHldr")
@@ -163,7 +167,7 @@ public TransactionDetails3 setPlcOfTrad(PlaceOfTradeIdentification2Choice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDtTm() {
@@ -175,7 +179,7 @@ public XMLGregorianCalendar getTradDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDetails3 setTradDtTm(XMLGregorianCalendar value) {
@@ -417,7 +421,7 @@ public TransactionDetails3 setSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -429,7 +433,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDetails3 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport10.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport10.java
index 53f08cada..d40f8d821 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport10.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,10 +46,12 @@ public class TransparencyDataReport10 {
protected String fullNm;
@XmlElement(name = "TradgVn")
protected String tradgVn;
- @XmlElement(name = "RptgDt")
+ @XmlElement(name = "RptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "FinInstrmClssfctn", required = true)
@@ -172,7 +176,7 @@ public TransparencyDataReport10 setTradgVn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -184,7 +188,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport10 setRptgDt(XMLGregorianCalendar value) {
@@ -197,7 +201,7 @@ public TransparencyDataReport10 setRptgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -209,7 +213,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport10 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport11.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport11.java
index d6695c514..19fb5849b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport11.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport11.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class TransparencyDataReport11 {
protected String fullNm;
@XmlElement(name = "TradgVn")
protected String tradgVn;
- @XmlElement(name = "RptgDt")
+ @XmlElement(name = "RptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
@XmlElement(name = "FinInstrmClssfctn", required = true)
@@ -163,7 +166,7 @@ public TransparencyDataReport11 setTradgVn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -175,7 +178,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport11 setRptgDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport13.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport13.java
index 0c45e8b64..adaf0ad61 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport13.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class TransparencyDataReport13 {
protected String techRcrdId;
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "RptgDt")
+ @XmlElement(name = "RptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
@XmlElement(name = "TradgVn")
@@ -105,7 +108,7 @@ public TransparencyDataReport13 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -117,7 +120,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport13 setRptgDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport15.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport15.java
index aa1a583dc..6ea86b78b 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport15.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class TransparencyDataReport15 {
protected String techRcrdId;
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "RptgDt")
+ @XmlElement(name = "RptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
@XmlElement(name = "TradgVn")
@@ -105,7 +108,7 @@ public TransparencyDataReport15 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -117,7 +120,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport15 setRptgDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport16.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport16.java
index 425f9ef6d..7c4862f43 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport16.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransparencyDataReport16.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,10 +46,12 @@ public class TransparencyDataReport16 {
protected String fullNm;
@XmlElement(name = "TradgVn")
protected String tradgVn;
- @XmlElement(name = "RptgDt")
+ @XmlElement(name = "RptgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "FinInstrmClssfctn", required = true)
@@ -172,7 +176,7 @@ public TransparencyDataReport16 setTradgVn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -184,7 +188,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport16 setRptgDt(XMLGregorianCalendar value) {
@@ -197,7 +201,7 @@ public TransparencyDataReport16 setRptgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -209,7 +213,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransparencyDataReport16 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction3.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction3.java
index 45c6a93ba..4750d8d8a 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction3.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,10 +64,12 @@ public class UnsecuredMarketTransaction3 {
protected CounterpartyIdentification2Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -273,7 +277,7 @@ public UnsecuredMarketTransaction3 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -285,7 +289,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnsecuredMarketTransaction3 setSttlmDt(XMLGregorianCalendar value) {
@@ -298,7 +302,7 @@ public UnsecuredMarketTransaction3 setSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -310,7 +314,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnsecuredMarketTransaction3 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction4.java b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction4.java
index 372f47249..9cdaefd79 100644
--- a/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction4.java
+++ b/model-auth-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnsecuredMarketTransaction4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,10 +71,12 @@ public class UnsecuredMarketTransaction4 {
protected CounterpartyIdentification3Choice ctrPtyId;
@XmlElement(name = "TradDt", required = true)
protected DateAndDateTimeChoice tradDt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
- @XmlElement(name = "MtrtyDt", required = true)
+ @XmlElement(name = "MtrtyDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "TxTp", required = true)
@@ -330,7 +334,7 @@ public UnsecuredMarketTransaction4 setTradDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -342,7 +346,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnsecuredMarketTransaction4 setSttlmDt(XMLGregorianCalendar value) {
@@ -355,7 +359,7 @@ public UnsecuredMarketTransaction4 setSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -367,7 +371,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnsecuredMarketTransaction4 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100101.java
index 5c86d0057..1e78ae93f 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100101 parse(String xml) {
- return ((MxCaaa00100101) MxReadImpl.parse(MxCaaa00100101 .class, xml, _classes));
+ return ((MxCaaa00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100102.java
index 6a522afce..59240834a 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100102 parse(String xml) {
- return ((MxCaaa00100102) MxReadImpl.parse(MxCaaa00100102 .class, xml, _classes));
+ return ((MxCaaa00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100103.java
index c079ae49d..0d496826d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100103 parse(String xml) {
- return ((MxCaaa00100103) MxReadImpl.parse(MxCaaa00100103 .class, xml, _classes));
+ return ((MxCaaa00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100104.java
index 8e26d004e..cf6814e60 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100104 parse(String xml) {
- return ((MxCaaa00100104) MxReadImpl.parse(MxCaaa00100104 .class, xml, _classes));
+ return ((MxCaaa00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100105.java
index fca821d0e..bfee86664 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100105 parse(String xml) {
- return ((MxCaaa00100105) MxReadImpl.parse(MxCaaa00100105 .class, xml, _classes));
+ return ((MxCaaa00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100106.java
index 4a8efb9ee..c7751760e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100106 parse(String xml) {
- return ((MxCaaa00100106) MxReadImpl.parse(MxCaaa00100106 .class, xml, _classes));
+ return ((MxCaaa00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100107.java
index ed4bdbcd7..2503e24f2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100107 parse(String xml) {
- return ((MxCaaa00100107) MxReadImpl.parse(MxCaaa00100107 .class, xml, _classes));
+ return ((MxCaaa00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100108.java
index 95a1c0ff8..63848d325 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00100108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00100108 parse(String xml) {
- return ((MxCaaa00100108) MxReadImpl.parse(MxCaaa00100108 .class, xml, _classes));
+ return ((MxCaaa00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00100108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200101.java
index a3d437a65..b9fce0068 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200101 parse(String xml) {
- return ((MxCaaa00200101) MxReadImpl.parse(MxCaaa00200101 .class, xml, _classes));
+ return ((MxCaaa00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200102.java
index 5fa50a557..abed4955b 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200102 parse(String xml) {
- return ((MxCaaa00200102) MxReadImpl.parse(MxCaaa00200102 .class, xml, _classes));
+ return ((MxCaaa00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200103.java
index 9d4655582..94edff73d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200103 parse(String xml) {
- return ((MxCaaa00200103) MxReadImpl.parse(MxCaaa00200103 .class, xml, _classes));
+ return ((MxCaaa00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200104.java
index f4a92047c..62d1f793a 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200104 parse(String xml) {
- return ((MxCaaa00200104) MxReadImpl.parse(MxCaaa00200104 .class, xml, _classes));
+ return ((MxCaaa00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200105.java
index a15c902f4..d60124e54 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200105 parse(String xml) {
- return ((MxCaaa00200105) MxReadImpl.parse(MxCaaa00200105 .class, xml, _classes));
+ return ((MxCaaa00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200106.java
index 0bf4edc45..ca48161bf 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200106 parse(String xml) {
- return ((MxCaaa00200106) MxReadImpl.parse(MxCaaa00200106 .class, xml, _classes));
+ return ((MxCaaa00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200107.java
index 89cb8fb49..0f53098cd 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200107 parse(String xml) {
- return ((MxCaaa00200107) MxReadImpl.parse(MxCaaa00200107 .class, xml, _classes));
+ return ((MxCaaa00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200108.java
index 33900467f..b07cc92ee 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00200108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00200108 parse(String xml) {
- return ((MxCaaa00200108) MxReadImpl.parse(MxCaaa00200108 .class, xml, _classes));
+ return ((MxCaaa00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00200108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300101.java
index 75ce78f6f..c9313243e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300101 parse(String xml) {
- return ((MxCaaa00300101) MxReadImpl.parse(MxCaaa00300101 .class, xml, _classes));
+ return ((MxCaaa00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300102.java
index 177ff0705..f37075425 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300102 parse(String xml) {
- return ((MxCaaa00300102) MxReadImpl.parse(MxCaaa00300102 .class, xml, _classes));
+ return ((MxCaaa00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300103.java
index 246daadb4..f36388e87 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300103 parse(String xml) {
- return ((MxCaaa00300103) MxReadImpl.parse(MxCaaa00300103 .class, xml, _classes));
+ return ((MxCaaa00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300104.java
index 1d5c78807..cd477aa9e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300104 parse(String xml) {
- return ((MxCaaa00300104) MxReadImpl.parse(MxCaaa00300104 .class, xml, _classes));
+ return ((MxCaaa00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300105.java
index f834d1a68..6b361f01d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300105 parse(String xml) {
- return ((MxCaaa00300105) MxReadImpl.parse(MxCaaa00300105 .class, xml, _classes));
+ return ((MxCaaa00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300106.java
index 4ce843814..5ee43d8ad 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300106 parse(String xml) {
- return ((MxCaaa00300106) MxReadImpl.parse(MxCaaa00300106 .class, xml, _classes));
+ return ((MxCaaa00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300107.java
index 8a4455dbe..553ada05a 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300107 parse(String xml) {
- return ((MxCaaa00300107) MxReadImpl.parse(MxCaaa00300107 .class, xml, _classes));
+ return ((MxCaaa00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300108.java
index 4822973c3..631896668 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00300108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00300108 parse(String xml) {
- return ((MxCaaa00300108) MxReadImpl.parse(MxCaaa00300108 .class, xml, _classes));
+ return ((MxCaaa00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00300108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400101.java
index 4207935dd..02b1a8e93 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400101 parse(String xml) {
- return ((MxCaaa00400101) MxReadImpl.parse(MxCaaa00400101 .class, xml, _classes));
+ return ((MxCaaa00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400102.java
index 3d1a411a8..0af0f6724 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400102 parse(String xml) {
- return ((MxCaaa00400102) MxReadImpl.parse(MxCaaa00400102 .class, xml, _classes));
+ return ((MxCaaa00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400103.java
index 0585662ac..0404503e2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400103 parse(String xml) {
- return ((MxCaaa00400103) MxReadImpl.parse(MxCaaa00400103 .class, xml, _classes));
+ return ((MxCaaa00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400104.java
index d71c5552c..d4fe94d50 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400104 parse(String xml) {
- return ((MxCaaa00400104) MxReadImpl.parse(MxCaaa00400104 .class, xml, _classes));
+ return ((MxCaaa00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400105.java
index e6f1c73ce..1f2780e2d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400105 parse(String xml) {
- return ((MxCaaa00400105) MxReadImpl.parse(MxCaaa00400105 .class, xml, _classes));
+ return ((MxCaaa00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400106.java
index 3b8ae3898..d65cb62d4 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400106 parse(String xml) {
- return ((MxCaaa00400106) MxReadImpl.parse(MxCaaa00400106 .class, xml, _classes));
+ return ((MxCaaa00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400107.java
index 7a2368a8c..75a1d2871 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00400107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00400107 parse(String xml) {
- return ((MxCaaa00400107) MxReadImpl.parse(MxCaaa00400107 .class, xml, _classes));
+ return ((MxCaaa00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00400107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500101.java
index d4efa2991..d724187cd 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500101 parse(String xml) {
- return ((MxCaaa00500101) MxReadImpl.parse(MxCaaa00500101 .class, xml, _classes));
+ return ((MxCaaa00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500102.java
index 66564b3ce..8249eb010 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500102 parse(String xml) {
- return ((MxCaaa00500102) MxReadImpl.parse(MxCaaa00500102 .class, xml, _classes));
+ return ((MxCaaa00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500103.java
index 6d7b09366..18de2bf5c 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500103 parse(String xml) {
- return ((MxCaaa00500103) MxReadImpl.parse(MxCaaa00500103 .class, xml, _classes));
+ return ((MxCaaa00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500104.java
index c592b1e16..96211b93b 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500104 parse(String xml) {
- return ((MxCaaa00500104) MxReadImpl.parse(MxCaaa00500104 .class, xml, _classes));
+ return ((MxCaaa00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500105.java
index eb4d0f216..777e77809 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500105 parse(String xml) {
- return ((MxCaaa00500105) MxReadImpl.parse(MxCaaa00500105 .class, xml, _classes));
+ return ((MxCaaa00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500106.java
index 4aed4b0af..af492e602 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500106 parse(String xml) {
- return ((MxCaaa00500106) MxReadImpl.parse(MxCaaa00500106 .class, xml, _classes));
+ return ((MxCaaa00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500107.java
index ed97a7892..4f51cbde7 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500107 parse(String xml) {
- return ((MxCaaa00500107) MxReadImpl.parse(MxCaaa00500107 .class, xml, _classes));
+ return ((MxCaaa00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500108.java
index 414bb079c..972567fb5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00500108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00500108 parse(String xml) {
- return ((MxCaaa00500108) MxReadImpl.parse(MxCaaa00500108 .class, xml, _classes));
+ return ((MxCaaa00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00500108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600101.java
index 97e7cb748..a2a408c20 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600101 parse(String xml) {
- return ((MxCaaa00600101) MxReadImpl.parse(MxCaaa00600101 .class, xml, _classes));
+ return ((MxCaaa00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600102.java
index 6ce541a46..4d1957055 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600102 parse(String xml) {
- return ((MxCaaa00600102) MxReadImpl.parse(MxCaaa00600102 .class, xml, _classes));
+ return ((MxCaaa00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600103.java
index f0dd9f310..8fffc04cf 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600103 parse(String xml) {
- return ((MxCaaa00600103) MxReadImpl.parse(MxCaaa00600103 .class, xml, _classes));
+ return ((MxCaaa00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600104.java
index 0ef03bfe7..31bc67894 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600104 parse(String xml) {
- return ((MxCaaa00600104) MxReadImpl.parse(MxCaaa00600104 .class, xml, _classes));
+ return ((MxCaaa00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600105.java
index dea3d2884..ade2f7a67 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600105 parse(String xml) {
- return ((MxCaaa00600105) MxReadImpl.parse(MxCaaa00600105 .class, xml, _classes));
+ return ((MxCaaa00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600106.java
index 62fc7aeff..83c381016 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600106 parse(String xml) {
- return ((MxCaaa00600106) MxReadImpl.parse(MxCaaa00600106 .class, xml, _classes));
+ return ((MxCaaa00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600107.java
index 79b294df8..8ab51eb15 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00600107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00600107 parse(String xml) {
- return ((MxCaaa00600107) MxReadImpl.parse(MxCaaa00600107 .class, xml, _classes));
+ return ((MxCaaa00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00600107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700101.java
index d026e5834..169a4489e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700101 parse(String xml) {
- return ((MxCaaa00700101) MxReadImpl.parse(MxCaaa00700101 .class, xml, _classes));
+ return ((MxCaaa00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700102.java
index dbaa930ce..886b33c99 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700102 parse(String xml) {
- return ((MxCaaa00700102) MxReadImpl.parse(MxCaaa00700102 .class, xml, _classes));
+ return ((MxCaaa00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700103.java
index a8f1c64f1..2d5af74e8 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700103 parse(String xml) {
- return ((MxCaaa00700103) MxReadImpl.parse(MxCaaa00700103 .class, xml, _classes));
+ return ((MxCaaa00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700104.java
index 922a78147..ba1223610 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700104 parse(String xml) {
- return ((MxCaaa00700104) MxReadImpl.parse(MxCaaa00700104 .class, xml, _classes));
+ return ((MxCaaa00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700105.java
index 07d023c8a..f8479ad33 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700105 parse(String xml) {
- return ((MxCaaa00700105) MxReadImpl.parse(MxCaaa00700105 .class, xml, _classes));
+ return ((MxCaaa00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700106.java
index 41bfde970..22e58a429 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700106 parse(String xml) {
- return ((MxCaaa00700106) MxReadImpl.parse(MxCaaa00700106 .class, xml, _classes));
+ return ((MxCaaa00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700107.java
index 15b4eff0d..3f8214e4d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700107 parse(String xml) {
- return ((MxCaaa00700107) MxReadImpl.parse(MxCaaa00700107 .class, xml, _classes));
+ return ((MxCaaa00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700108.java
index 15ac0d728..bc75fa8c2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00700108 parse(String xml) {
- return ((MxCaaa00700108) MxReadImpl.parse(MxCaaa00700108 .class, xml, _classes));
+ return ((MxCaaa00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800101.java
index 3f3418849..1068f5f6d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800101 parse(String xml) {
- return ((MxCaaa00800101) MxReadImpl.parse(MxCaaa00800101 .class, xml, _classes));
+ return ((MxCaaa00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800102.java
index eeadfc164..8c7c6e228 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800102 parse(String xml) {
- return ((MxCaaa00800102) MxReadImpl.parse(MxCaaa00800102 .class, xml, _classes));
+ return ((MxCaaa00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800103.java
index e9c2ad4e4..deb7ccb06 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800103 parse(String xml) {
- return ((MxCaaa00800103) MxReadImpl.parse(MxCaaa00800103 .class, xml, _classes));
+ return ((MxCaaa00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800104.java
index a2dc3ceaa..929b92d75 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800104 parse(String xml) {
- return ((MxCaaa00800104) MxReadImpl.parse(MxCaaa00800104 .class, xml, _classes));
+ return ((MxCaaa00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800105.java
index dd909be8c..fb92cb103 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800105 parse(String xml) {
- return ((MxCaaa00800105) MxReadImpl.parse(MxCaaa00800105 .class, xml, _classes));
+ return ((MxCaaa00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800106.java
index 6721aada0..d366fcc6e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800106 parse(String xml) {
- return ((MxCaaa00800106) MxReadImpl.parse(MxCaaa00800106 .class, xml, _classes));
+ return ((MxCaaa00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800107.java
index 1dd4c1a6a..4ce6e8a77 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00800107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00800107 parse(String xml) {
- return ((MxCaaa00800107) MxReadImpl.parse(MxCaaa00800107 .class, xml, _classes));
+ return ((MxCaaa00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00800107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900101.java
index d3f5ad34d..85b21bca1 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900101 parse(String xml) {
- return ((MxCaaa00900101) MxReadImpl.parse(MxCaaa00900101 .class, xml, _classes));
+ return ((MxCaaa00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900102.java
index 9a744217d..d7fe4cd22 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900102 parse(String xml) {
- return ((MxCaaa00900102) MxReadImpl.parse(MxCaaa00900102 .class, xml, _classes));
+ return ((MxCaaa00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900103.java
index b4c9deae9..4dd782eb5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900103 parse(String xml) {
- return ((MxCaaa00900103) MxReadImpl.parse(MxCaaa00900103 .class, xml, _classes));
+ return ((MxCaaa00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900104.java
index 8e6cae98f..dfb8f2baa 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900104 parse(String xml) {
- return ((MxCaaa00900104) MxReadImpl.parse(MxCaaa00900104 .class, xml, _classes));
+ return ((MxCaaa00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900105.java
index 43ee0e364..f70ac6f28 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900105 parse(String xml) {
- return ((MxCaaa00900105) MxReadImpl.parse(MxCaaa00900105 .class, xml, _classes));
+ return ((MxCaaa00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900106.java
index 71829bd7c..735ce34bb 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900106 parse(String xml) {
- return ((MxCaaa00900106) MxReadImpl.parse(MxCaaa00900106 .class, xml, _classes));
+ return ((MxCaaa00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900107.java
index d163e90ef..8b76023d7 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa00900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa00900107 parse(String xml) {
- return ((MxCaaa00900107) MxReadImpl.parse(MxCaaa00900107 .class, xml, _classes));
+ return ((MxCaaa00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa00900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000101.java
index cb90fbf03..4dfca4fe2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000101 parse(String xml) {
- return ((MxCaaa01000101) MxReadImpl.parse(MxCaaa01000101 .class, xml, _classes));
+ return ((MxCaaa01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000102.java
index 26aa4ec78..2517b1eda 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000102 parse(String xml) {
- return ((MxCaaa01000102) MxReadImpl.parse(MxCaaa01000102 .class, xml, _classes));
+ return ((MxCaaa01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000103.java
index 6e6a155b1..f2fceed02 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000103 parse(String xml) {
- return ((MxCaaa01000103) MxReadImpl.parse(MxCaaa01000103 .class, xml, _classes));
+ return ((MxCaaa01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000104.java
index fa7d313cb..99bc5d49e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000104 parse(String xml) {
- return ((MxCaaa01000104) MxReadImpl.parse(MxCaaa01000104 .class, xml, _classes));
+ return ((MxCaaa01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000105.java
index 9a8d8cfe2..5ce7799f3 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000105 parse(String xml) {
- return ((MxCaaa01000105) MxReadImpl.parse(MxCaaa01000105 .class, xml, _classes));
+ return ((MxCaaa01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000106.java
index 18d6d2866..8237cb221 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01000106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01000106 parse(String xml) {
- return ((MxCaaa01000106) MxReadImpl.parse(MxCaaa01000106 .class, xml, _classes));
+ return ((MxCaaa01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01000106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100101.java
index 4dc6346ed..a3c1d3462 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100101 parse(String xml) {
- return ((MxCaaa01100101) MxReadImpl.parse(MxCaaa01100101 .class, xml, _classes));
+ return ((MxCaaa01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100102.java
index 01d5fbbf8..6968bdcec 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100102 parse(String xml) {
- return ((MxCaaa01100102) MxReadImpl.parse(MxCaaa01100102 .class, xml, _classes));
+ return ((MxCaaa01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100103.java
index 5cb02dde1..eb7e259d2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100103 parse(String xml) {
- return ((MxCaaa01100103) MxReadImpl.parse(MxCaaa01100103 .class, xml, _classes));
+ return ((MxCaaa01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100104.java
index 8c0bd24d7..b57319566 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100104 parse(String xml) {
- return ((MxCaaa01100104) MxReadImpl.parse(MxCaaa01100104 .class, xml, _classes));
+ return ((MxCaaa01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100105.java
index a888ab66a..ab1a66d72 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100105 parse(String xml) {
- return ((MxCaaa01100105) MxReadImpl.parse(MxCaaa01100105 .class, xml, _classes));
+ return ((MxCaaa01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100106.java
index e411e374c..22b90a38b 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100106 parse(String xml) {
- return ((MxCaaa01100106) MxReadImpl.parse(MxCaaa01100106 .class, xml, _classes));
+ return ((MxCaaa01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100107.java
index 1fc27ea71..ecaa92a28 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100107 parse(String xml) {
- return ((MxCaaa01100107) MxReadImpl.parse(MxCaaa01100107 .class, xml, _classes));
+ return ((MxCaaa01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100108.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100108.java
index e531b9abd..9289b9dc5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100108.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01100108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01100108 parse(String xml) {
- return ((MxCaaa01100108) MxReadImpl.parse(MxCaaa01100108 .class, xml, _classes));
+ return ((MxCaaa01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01100108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200101.java
index 19b344ade..641b8fd07 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200101 parse(String xml) {
- return ((MxCaaa01200101) MxReadImpl.parse(MxCaaa01200101 .class, xml, _classes));
+ return ((MxCaaa01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200102.java
index db8a8e397..714efa64c 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200102 parse(String xml) {
- return ((MxCaaa01200102) MxReadImpl.parse(MxCaaa01200102 .class, xml, _classes));
+ return ((MxCaaa01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200103.java
index f19225af3..837341972 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200103 parse(String xml) {
- return ((MxCaaa01200103) MxReadImpl.parse(MxCaaa01200103 .class, xml, _classes));
+ return ((MxCaaa01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200104.java
index 93662ced3..c163e24a2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200104 parse(String xml) {
- return ((MxCaaa01200104) MxReadImpl.parse(MxCaaa01200104 .class, xml, _classes));
+ return ((MxCaaa01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200105.java
index 9ddc1f2a6..acfb407f6 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200105 parse(String xml) {
- return ((MxCaaa01200105) MxReadImpl.parse(MxCaaa01200105 .class, xml, _classes));
+ return ((MxCaaa01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200106.java
index ceb2a8d2a..cee4d543e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200106 parse(String xml) {
- return ((MxCaaa01200106) MxReadImpl.parse(MxCaaa01200106 .class, xml, _classes));
+ return ((MxCaaa01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200107.java
index 06a4f18e2..08efd134c 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01200107 parse(String xml) {
- return ((MxCaaa01200107) MxReadImpl.parse(MxCaaa01200107 .class, xml, _classes));
+ return ((MxCaaa01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300101.java
index 9b825cda2..efde7452d 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300101 parse(String xml) {
- return ((MxCaaa01300101) MxReadImpl.parse(MxCaaa01300101 .class, xml, _classes));
+ return ((MxCaaa01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300102.java
index 0deb4e3bd..995e7a13b 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300102 parse(String xml) {
- return ((MxCaaa01300102) MxReadImpl.parse(MxCaaa01300102 .class, xml, _classes));
+ return ((MxCaaa01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300103.java
index c82a1f052..e8e5b2ea1 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300103 parse(String xml) {
- return ((MxCaaa01300103) MxReadImpl.parse(MxCaaa01300103 .class, xml, _classes));
+ return ((MxCaaa01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300104.java
index 123bdd03a..0a139d8bc 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300104 parse(String xml) {
- return ((MxCaaa01300104) MxReadImpl.parse(MxCaaa01300104 .class, xml, _classes));
+ return ((MxCaaa01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300105.java
index 159f69e88..2c2bd2861 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300105 parse(String xml) {
- return ((MxCaaa01300105) MxReadImpl.parse(MxCaaa01300105 .class, xml, _classes));
+ return ((MxCaaa01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300106.java
index b5613c3b6..e1c3c97e2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300106 parse(String xml) {
- return ((MxCaaa01300106) MxReadImpl.parse(MxCaaa01300106 .class, xml, _classes));
+ return ((MxCaaa01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300107.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300107.java
index 47eacee8c..99c9a4d33 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300107.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01300107 parse(String xml) {
- return ((MxCaaa01300107) MxReadImpl.parse(MxCaaa01300107 .class, xml, _classes));
+ return ((MxCaaa01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400101.java
index bfc2661fe..7e0ffd1ac 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400101 parse(String xml) {
- return ((MxCaaa01400101) MxReadImpl.parse(MxCaaa01400101 .class, xml, _classes));
+ return ((MxCaaa01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400102.java
index a6260e969..390fcc2a7 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400102 parse(String xml) {
- return ((MxCaaa01400102) MxReadImpl.parse(MxCaaa01400102 .class, xml, _classes));
+ return ((MxCaaa01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400103.java
index 55210c8ed..a0051a1dd 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400103 parse(String xml) {
- return ((MxCaaa01400103) MxReadImpl.parse(MxCaaa01400103 .class, xml, _classes));
+ return ((MxCaaa01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400104.java
index ae6768efb..a12d8131a 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400104 parse(String xml) {
- return ((MxCaaa01400104) MxReadImpl.parse(MxCaaa01400104 .class, xml, _classes));
+ return ((MxCaaa01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400105.java
index 79ff8d892..c7e883bf5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400105 parse(String xml) {
- return ((MxCaaa01400105) MxReadImpl.parse(MxCaaa01400105 .class, xml, _classes));
+ return ((MxCaaa01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400106.java
index 9b213013f..ea61f035a 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01400106 parse(String xml) {
- return ((MxCaaa01400106) MxReadImpl.parse(MxCaaa01400106 .class, xml, _classes));
+ return ((MxCaaa01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500101.java
index 44e11a52a..a7147fdd5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01500101 parse(String xml) {
- return ((MxCaaa01500101) MxReadImpl.parse(MxCaaa01500101 .class, xml, _classes));
+ return ((MxCaaa01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500102.java
index 574c17d01..c4b1cc207 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01500102 parse(String xml) {
- return ((MxCaaa01500102) MxReadImpl.parse(MxCaaa01500102 .class, xml, _classes));
+ return ((MxCaaa01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500103.java
index 2181c2907..4b3994ab5 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01500103 parse(String xml) {
- return ((MxCaaa01500103) MxReadImpl.parse(MxCaaa01500103 .class, xml, _classes));
+ return ((MxCaaa01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500104.java
index 7196cb19a..7d6ae6dc2 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01500104 parse(String xml) {
- return ((MxCaaa01500104) MxReadImpl.parse(MxCaaa01500104 .class, xml, _classes));
+ return ((MxCaaa01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500105.java
index fa7627c5b..7fd3c20fc 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01500105 parse(String xml) {
- return ((MxCaaa01500105) MxReadImpl.parse(MxCaaa01500105 .class, xml, _classes));
+ return ((MxCaaa01500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600101.java
index bdbc7566c..6e0e1a017 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600101 parse(String xml) {
- return ((MxCaaa01600101) MxReadImpl.parse(MxCaaa01600101 .class, xml, _classes));
+ return ((MxCaaa01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600102.java
index 8e23a9800..8de57fe35 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600102 parse(String xml) {
- return ((MxCaaa01600102) MxReadImpl.parse(MxCaaa01600102 .class, xml, _classes));
+ return ((MxCaaa01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600103.java
index 55363e99c..14309e60e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600103 parse(String xml) {
- return ((MxCaaa01600103) MxReadImpl.parse(MxCaaa01600103 .class, xml, _classes));
+ return ((MxCaaa01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600104.java
index a42cc33e1..27688d5c1 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600104 parse(String xml) {
- return ((MxCaaa01600104) MxReadImpl.parse(MxCaaa01600104 .class, xml, _classes));
+ return ((MxCaaa01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600105.java
index 8c5e0bdd0..7387ee629 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600105 parse(String xml) {
- return ((MxCaaa01600105) MxReadImpl.parse(MxCaaa01600105 .class, xml, _classes));
+ return ((MxCaaa01600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600106.java
index 885ab0e76..85f649acd 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01600106 parse(String xml) {
- return ((MxCaaa01600106) MxReadImpl.parse(MxCaaa01600106 .class, xml, _classes));
+ return ((MxCaaa01600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700101.java
index 1d0988912..c98b745f3 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700101 parse(String xml) {
- return ((MxCaaa01700101) MxReadImpl.parse(MxCaaa01700101 .class, xml, _classes));
+ return ((MxCaaa01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700102.java
index 58aec723b..cf3d73f3c 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700102 parse(String xml) {
- return ((MxCaaa01700102) MxReadImpl.parse(MxCaaa01700102 .class, xml, _classes));
+ return ((MxCaaa01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700103.java
index 65fe1e81c..544f6c5de 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700103 parse(String xml) {
- return ((MxCaaa01700103) MxReadImpl.parse(MxCaaa01700103 .class, xml, _classes));
+ return ((MxCaaa01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700104.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700104.java
index 7786256b4..979622641 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700104.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700104 parse(String xml) {
- return ((MxCaaa01700104) MxReadImpl.parse(MxCaaa01700104 .class, xml, _classes));
+ return ((MxCaaa01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700105.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700105.java
index bf044f87a..d01a4d8bc 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700105.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700105 parse(String xml) {
- return ((MxCaaa01700105) MxReadImpl.parse(MxCaaa01700105 .class, xml, _classes));
+ return ((MxCaaa01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700106.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700106.java
index f931f4429..9bcf219e1 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700106.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01700106 parse(String xml) {
- return ((MxCaaa01700106) MxReadImpl.parse(MxCaaa01700106 .class, xml, _classes));
+ return ((MxCaaa01700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800101.java
index 977a2da38..d69911b6e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01800101 parse(String xml) {
- return ((MxCaaa01800101) MxReadImpl.parse(MxCaaa01800101 .class, xml, _classes));
+ return ((MxCaaa01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800102.java
index bcb806f78..2542b0b6e 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01800102 parse(String xml) {
- return ((MxCaaa01800102) MxReadImpl.parse(MxCaaa01800102 .class, xml, _classes));
+ return ((MxCaaa01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800103.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800103.java
index 13c367f6d..8b01912f3 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800103.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01800103 parse(String xml) {
- return ((MxCaaa01800103) MxReadImpl.parse(MxCaaa01800103 .class, xml, _classes));
+ return ((MxCaaa01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900101.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900101.java
index 7a4cd149d..aef753147 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900101.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01900101 parse(String xml) {
- return ((MxCaaa01900101) MxReadImpl.parse(MxCaaa01900101 .class, xml, _classes));
+ return ((MxCaaa01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900102.java b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900102.java
index c954138eb..f328a5ded 100644
--- a/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900102.java
+++ b/model-caaa-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaaa01900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaaa01900102 parse(String xml) {
- return ((MxCaaa01900102) MxReadImpl.parse(MxCaaa01900102 .class, xml, _classes));
+ return ((MxCaaa01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaaa01900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaaa01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaaa01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Acquirer1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Acquirer1.java
index acf753d98..0f9f89c98 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Acquirer1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Acquirer1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class Acquirer1 {
@XmlElement(name = "Id")
protected GenericIdentification32 id;
- @XmlElement(name = "ParamsVrsn", required = true)
+ @XmlElement(name = "ParamsVrsn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar paramsVrsn;
@@ -62,7 +65,7 @@ public Acquirer1 setId(GenericIdentification32 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getParamsVrsn() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getParamsVrsn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Acquirer1 setParamsVrsn(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction1.java
index 394eb2607..4add62711 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,10 +33,12 @@
})
public class AggregationTransaction1 {
- @XmlElement(name = "FrstPmtDtTm")
+ @XmlElement(name = "FrstPmtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frstPmtDtTm;
- @XmlElement(name = "LastPmtDtTm")
+ @XmlElement(name = "LastPmtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastPmtDtTm;
@XmlElement(name = "NbOfPmts")
@@ -47,7 +51,7 @@ public class AggregationTransaction1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDtTm() {
@@ -59,7 +63,7 @@ public XMLGregorianCalendar getFrstPmtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AggregationTransaction1 setFrstPmtDtTm(XMLGregorianCalendar value) {
@@ -72,7 +76,7 @@ public AggregationTransaction1 setFrstPmtDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastPmtDtTm() {
@@ -84,7 +88,7 @@ public XMLGregorianCalendar getLastPmtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AggregationTransaction1 setLastPmtDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction2.java
index 0e6ea29ae..e306b4ac3 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AggregationTransaction2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,10 +33,12 @@
})
public class AggregationTransaction2 {
- @XmlElement(name = "FrstPmtDtTm")
+ @XmlElement(name = "FrstPmtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frstPmtDtTm;
- @XmlElement(name = "LastPmtDtTm")
+ @XmlElement(name = "LastPmtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastPmtDtTm;
@XmlElement(name = "NbOfPmts")
@@ -47,7 +51,7 @@ public class AggregationTransaction2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDtTm() {
@@ -59,7 +63,7 @@ public XMLGregorianCalendar getFrstPmtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AggregationTransaction2 setFrstPmtDtTm(XMLGregorianCalendar value) {
@@ -72,7 +76,7 @@ public AggregationTransaction2 setFrstPmtDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastPmtDtTm() {
@@ -84,7 +88,7 @@ public XMLGregorianCalendar getLastPmtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AggregationTransaction2 setLastPmtDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentEnvironment8.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentEnvironment8.java
index 5a86a4561..6eb6fb4d7 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentEnvironment8.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentEnvironment8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class CardPaymentEnvironment8 {
- @XmlElement(name = "AcqrrParamsVrsn", required = true)
+ @XmlElement(name = "AcqrrParamsVrsn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar acqrrParamsVrsn;
@XmlElement(name = "MrchntId")
@@ -40,7 +43,7 @@ public class CardPaymentEnvironment8 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAcqrrParamsVrsn() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getAcqrrParamsVrsn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentEnvironment8 setAcqrrParamsVrsn(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentServiceType9Code.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentServiceType9Code.java
index 98e3f1251..22f41e2d7 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentServiceType9Code.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentServiceType9Code.java
@@ -110,7 +110,7 @@ public enum CardPaymentServiceType9Code {
CSHB,
/**
- * Instant transaction
+ * Instant transaction.
*
*/
INST,
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails1.java
index f9798ede3..88982e122 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class CardPaymentTransactionDetails1 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -174,7 +177,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -186,7 +189,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails1 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails10.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails10.java
index 6c70b5cee..bce21719c 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails10.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class CardPaymentTransactionDetails10 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -174,7 +177,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -186,7 +189,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails10 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails11.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails11.java
index ca2e0edba..783d129b2 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails11.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails11.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class CardPaymentTransactionDetails11 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -132,7 +135,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails11 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails12.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails12.java
index a248deedb..caffc23e4 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails12.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class CardPaymentTransactionDetails12 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount5 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -182,7 +185,7 @@ public CardPaymentTransactionDetails12 setDtldAmt(DetailedAmount5 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -194,7 +197,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails12 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails13.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails13.java
index c7bcce899..c2bfac60e 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails13.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails13.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class CardPaymentTransactionDetails13 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected DetailedAmount5 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -126,7 +129,7 @@ public CardPaymentTransactionDetails13 setDtldAmt(DetailedAmount5 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails13 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails14.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails14.java
index 6e740933c..0372edf93 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails14.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class CardPaymentTransactionDetails14 {
protected BigDecimal reqdAmt;
@XmlElement(name = "AuthrsdAmt")
protected BigDecimal authrsdAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -231,7 +234,7 @@ public CardPaymentTransactionDetails14 setAuthrsdAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -243,7 +246,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails14 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails15.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails15.java
index 04f96946a..285667be4 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails15.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class CardPaymentTransactionDetails15 {
protected BigDecimal reqdAmt;
@XmlElement(name = "AuthrsdAmt")
protected BigDecimal authrsdAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -234,7 +237,7 @@ public CardPaymentTransactionDetails15 setAuthrsdAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -246,7 +249,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails15 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails16.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails16.java
index e9beca187..8a036dff5 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails16.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails16.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class CardPaymentTransactionDetails16 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount5 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -176,7 +179,7 @@ public CardPaymentTransactionDetails16 setDtldAmt(DetailedAmount5 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -188,7 +191,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails16 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails17.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails17.java
index 9b626fdbf..056ae391f 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails17.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails17.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class CardPaymentTransactionDetails17 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected DetailedAmount5 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -126,7 +129,7 @@ public CardPaymentTransactionDetails17 setDtldAmt(DetailedAmount5 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails17 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails19.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails19.java
index e0ad9b3cb..60320950c 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails19.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails19.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class CardPaymentTransactionDetails19 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount7 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -179,7 +182,7 @@ public CardPaymentTransactionDetails19 setDtldAmt(DetailedAmount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -191,7 +194,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails19 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails2.java
index 899750f8f..ac8889948 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class CardPaymentTransactionDetails2 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -132,7 +135,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails2 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails20.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails20.java
index 9e8db90f8..80ffacc38 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails20.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails20.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class CardPaymentTransactionDetails20 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected DetailedAmount7 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -126,7 +129,7 @@ public CardPaymentTransactionDetails20 setDtldAmt(DetailedAmount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails20 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails21.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails21.java
index df5c7d5c3..34b8b9971 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails21.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails21.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class CardPaymentTransactionDetails21 {
protected BigDecimal reqdAmt;
@XmlElement(name = "AuthrsdAmt")
protected BigDecimal authrsdAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -231,7 +234,7 @@ public CardPaymentTransactionDetails21 setAuthrsdAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -243,7 +246,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails21 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails23.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails23.java
index 77bb13a45..f6331c8a8 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails23.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails23.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class CardPaymentTransactionDetails23 {
protected BigDecimal reqdAmt;
@XmlElement(name = "AuthrsdAmt")
protected BigDecimal authrsdAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -231,7 +234,7 @@ public CardPaymentTransactionDetails23 setAuthrsdAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -243,7 +246,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails23 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails24.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails24.java
index 8656be20a..370e28739 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails24.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class CardPaymentTransactionDetails24 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount7 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -176,7 +179,7 @@ public CardPaymentTransactionDetails24 setDtldAmt(DetailedAmount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -188,7 +191,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails24 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails25.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails25.java
index 586846181..49e49e2f9 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails25.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails25.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class CardPaymentTransactionDetails25 {
protected BigDecimal ttlAmt;
@XmlElement(name = "DtldAmt")
protected DetailedAmount7 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -126,7 +129,7 @@ public CardPaymentTransactionDetails25 setDtldAmt(DetailedAmount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails25 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails27.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails27.java
index c582e46c8..2fa63e4b0 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails27.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails27.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class CardPaymentTransactionDetails27 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount15 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -185,7 +188,7 @@ public CardPaymentTransactionDetails27 setDtldAmt(DetailedAmount15 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -197,7 +200,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails27 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails28.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails28.java
index af36c6819..84459fa90 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails28.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails28.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class CardPaymentTransactionDetails28 {
protected DetailedAmount15 dtldAmt;
@XmlElement(name = "InvcAmt")
protected DetailedAmount4 invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -154,7 +157,7 @@ public CardPaymentTransactionDetails28 setInvcAmt(DetailedAmount4 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -166,7 +169,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails28 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails29.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails29.java
index 79fdc97f9..883807224 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails29.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails29.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class CardPaymentTransactionDetails29 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -265,7 +268,7 @@ public CardPaymentTransactionDetails29 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -277,7 +280,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails29 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails3.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails3.java
index ec85f3f1f..3c854e814 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails3.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class CardPaymentTransactionDetails3 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -170,7 +173,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -182,7 +185,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails3 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails30.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails30.java
index db8588a69..c98ba3407 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails30.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails30.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class CardPaymentTransactionDetails30 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -265,7 +268,7 @@ public CardPaymentTransactionDetails30 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -277,7 +280,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails30 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails31.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails31.java
index a9b6b71d1..b7140779b 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails31.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails31.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class CardPaymentTransactionDetails31 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount15 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -185,7 +188,7 @@ public CardPaymentTransactionDetails31 setDtldAmt(DetailedAmount15 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -197,7 +200,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails31 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails32.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails32.java
index 792d703af..3f8264267 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails32.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails32.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class CardPaymentTransactionDetails32 {
protected DetailedAmount15 dtldAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "AcctTp")
@@ -154,7 +157,7 @@ public CardPaymentTransactionDetails32 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -166,7 +169,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails32 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails34.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails34.java
index cd76d3f9b..02f1e42d1 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails34.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails34.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class CardPaymentTransactionDetails34 {
protected String ccy;
@XmlElement(name = "TtlAmt", required = true)
protected BigDecimal ttlAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "ICCRltdData")
@@ -94,7 +97,7 @@ public CardPaymentTransactionDetails34 setTtlAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -106,7 +109,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails34 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails37.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails37.java
index c43d5ba3f..f0f39035e 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails37.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails37.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class CardPaymentTransactionDetails37 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -265,7 +268,7 @@ public CardPaymentTransactionDetails37 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -277,7 +280,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails37 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails38.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails38.java
index 92c66c011..afe8b4170 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails38.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails38.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class CardPaymentTransactionDetails38 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -265,7 +268,7 @@ public CardPaymentTransactionDetails38 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -277,7 +280,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails38 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails39.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails39.java
index 45d403232..7af18adcf 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails39.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails39.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class CardPaymentTransactionDetails39 {
protected TypeOfAmount8Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount15 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -185,7 +188,7 @@ public CardPaymentTransactionDetails39 setDtldAmt(DetailedAmount15 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -197,7 +200,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails39 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails4.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails4.java
index 7879b68da..0abf70187 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails4.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class CardPaymentTransactionDetails4 {
protected TypeOfAmount1Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected List dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -170,7 +173,7 @@ public List getDtldAmt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -182,7 +185,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails4 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails41.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails41.java
index 473400d0d..b6d73e14a 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails41.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails41.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class CardPaymentTransactionDetails41 {
protected TypeOfAmount8Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount15 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -185,7 +188,7 @@ public CardPaymentTransactionDetails41 setDtldAmt(DetailedAmount15 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -197,7 +200,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails41 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails44.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails44.java
index 7d1e4524f..472f72bdd 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails44.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails44.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,7 +62,8 @@ public class CardPaymentTransactionDetails44 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "UattnddLvlCtgy")
@@ -265,7 +268,7 @@ public CardPaymentTransactionDetails44 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -277,7 +280,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails44 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails45.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails45.java
index d46bf9340..bd7fe6aeb 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails45.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails45.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class CardPaymentTransactionDetails45 {
protected TypeOfAmount8Code amtQlfr;
@XmlElement(name = "DtldAmt")
protected DetailedAmount15 dtldAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -185,7 +188,7 @@ public CardPaymentTransactionDetails45 setDtldAmt(DetailedAmount15 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -197,7 +200,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails45 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails47.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails47.java
index 0d7eb5379..9132e71db 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails47.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails47.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class CardPaymentTransactionDetails47 {
protected BigDecimal authrsdAmt;
@XmlElement(name = "InvcAmt")
protected BigDecimal invcAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "OnLineRsn")
@@ -297,7 +300,7 @@ public CardPaymentTransactionDetails47 setInvcAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -309,7 +312,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails47 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails5.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails5.java
index 8f5b1b8ee..c6f20751f 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails5.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class CardPaymentTransactionDetails5 {
protected String ccy;
@XmlElement(name = "TtlAmt", required = true)
protected BigDecimal ttlAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "ICCRltdData")
@@ -94,7 +97,7 @@ public CardPaymentTransactionDetails5 setTtlAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -106,7 +109,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails5 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails7.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails7.java
index 914666a94..862324ab8 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails7.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class CardPaymentTransactionDetails7 {
protected String ccy;
@XmlElement(name = "TtlAmt", required = true)
protected BigDecimal ttlAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "ICCRltdData")
@@ -94,7 +97,7 @@ public CardPaymentTransactionDetails7 setTtlAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -106,7 +109,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails7 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails9.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails9.java
index 13917d682..26a78f55c 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails9.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardPaymentTransactionDetails9.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class CardPaymentTransactionDetails9 {
protected String ccy;
@XmlElement(name = "TtlAmt", required = true)
protected BigDecimal ttlAmt;
- @XmlElement(name = "VldtyDt")
+ @XmlElement(name = "VldtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtyDt;
@XmlElement(name = "ICCRltdData")
@@ -94,7 +97,7 @@ public CardPaymentTransactionDetails9 setTtlAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtyDt() {
@@ -106,7 +109,7 @@ public XMLGregorianCalendar getVldtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardPaymentTransactionDetails9 setVldtyDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion1.java
index d28259f49..e367e9bba 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,10 +70,12 @@ public class CurrencyConversion1 {
protected BigDecimal xchgRate;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -346,7 +350,7 @@ public CurrencyConversion1 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -358,7 +362,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion1 setQtnDt(XMLGregorianCalendar value) {
@@ -371,7 +375,7 @@ public CurrencyConversion1 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -383,7 +387,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion1 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion12.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion12.java
index a65c53d68..7c5507172 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion12.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class CurrencyConversion12 {
protected BigDecimal xchgRate;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -196,7 +200,7 @@ public CurrencyConversion12 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -208,7 +212,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion12 setQtnDt(XMLGregorianCalendar value) {
@@ -221,7 +225,7 @@ public CurrencyConversion12 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -233,7 +237,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion12 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion14.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion14.java
index 240041bc8..1d9ec6d0e 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion14.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class CurrencyConversion14 {
protected BigDecimal xchgRate;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -196,7 +200,7 @@ public CurrencyConversion14 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -208,7 +212,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion14 setQtnDt(XMLGregorianCalendar value) {
@@ -221,7 +225,7 @@ public CurrencyConversion14 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -233,7 +237,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion14 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion6.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion6.java
index 7c8406df4..04932cb9f 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion6.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class CurrencyConversion6 {
protected BigDecimal xchgRate;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -196,7 +200,7 @@ public CurrencyConversion6 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -208,7 +212,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion6 setQtnDt(XMLGregorianCalendar value) {
@@ -221,7 +225,7 @@ public CurrencyConversion6 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -233,7 +237,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion6 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerOrder1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerOrder1.java
index 9b12893b1..5a2601e19 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerOrder1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerOrder1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,10 +44,12 @@ public class CustomerOrder1 {
protected String saleRefId;
@XmlElement(name = "OpnOrdrStat")
protected Boolean opnOrdrStat;
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "Unit")
@@ -142,7 +146,7 @@ public CustomerOrder1 setOpnOrdrStat(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -154,7 +158,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerOrder1 setStartDt(XMLGregorianCalendar value) {
@@ -167,7 +171,7 @@ public CustomerOrder1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -179,7 +183,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerOrder1 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification1.java
index 470a0823a..9e672c903 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification1 {
protected DataSetCategory1Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification1 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification5.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification5.java
index 984358f9b..dd562ddc4 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification5.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification5 {
protected DataSetCategory8Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification5 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount14.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount14.java
index 6ae6ed252..6da090921 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount14.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount14.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DetailedAmount14 {
@XmlElement(name = "Amt", required = true)
protected BigDecimal amt;
- @XmlElement(name = "DtTm", required = true)
+ @XmlElement(name = "DtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CardDataNtryMd")
@@ -73,7 +76,7 @@ public DetailedAmount14 setAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DetailedAmount14 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount6.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount6.java
index 8e2f1fd69..029896eed 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount6.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DetailedAmount6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DetailedAmount6 {
@XmlElement(name = "Amt", required = true)
protected BigDecimal amt;
- @XmlElement(name = "DtTm", required = true)
+ @XmlElement(name = "DtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CardDataNtryMd")
@@ -73,7 +76,7 @@ public DetailedAmount6 setAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DetailedAmount6 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header1.java
index 4ea59ea56..e2bbeb0e1 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header1 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -130,7 +133,7 @@ public Header1 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header10.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header10.java
index 513045abf..87525ce4d 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header10.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header10 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -130,7 +133,7 @@ public Header10 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header10 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header11.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header11.java
index d26714b63..b287443d4 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header11.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class Header11 {
protected String xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -158,7 +161,7 @@ public Header11 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header11 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header12.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header12.java
index 736f25366..1f58b4085 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header12.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header12 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -116,7 +119,7 @@ public Header12 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header12 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header13.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header13.java
index 53a407ea2..fb1633771 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header13.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header13 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -130,7 +133,7 @@ public Header13 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header13 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header2.java
index 4d829259a..da7b92a34 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class Header2 {
protected String xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -158,7 +161,7 @@ public Header2 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header24.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header24.java
index 73d632b0a..5defa1d52 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header24.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Header24 {
protected BigDecimal xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -159,7 +162,7 @@ public Header24 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -171,7 +174,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header24 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header25.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header25.java
index 9ce17edf3..f6f77fec8 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header25.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header25.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class Header25 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -117,7 +120,7 @@ public Header25 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -129,7 +132,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header25 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header26.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header26.java
index 7c50d0d02..b2c63c8ff 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header26.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header26.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class Header26 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -131,7 +134,7 @@ public Header26 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -143,7 +146,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header26 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header3.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header3.java
index 81fb0e26c..e4ea5cfb2 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header3.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header3 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -116,7 +119,7 @@ public Header3 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header30.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header30.java
index d2754c5f2..8c8e45b35 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header30.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header30.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class Header30 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -131,7 +134,7 @@ public Header30 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -143,7 +146,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header30 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header34.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header34.java
index 6787a309b..336079ae5 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header34.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header34.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Header34 {
protected BigDecimal xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -159,7 +162,7 @@ public Header34 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -171,7 +174,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header34 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header35.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header35.java
index e12712b03..4c848c6e5 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header35.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header35.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class Header35 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -131,7 +134,7 @@ public Header35 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -143,7 +146,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header35 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header36.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header36.java
index 49bd07333..694173af6 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header36.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header36.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Header36 {
protected BigDecimal xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -159,7 +162,7 @@ public Header36 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -171,7 +174,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header36 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header5.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header5.java
index 45684e9ce..1a09bf81a 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header5.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header5 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -130,7 +133,7 @@ public Header5 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header7.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header7.java
index 37f73e0c9..ac09accd5 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header7.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header7 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -130,7 +133,7 @@ public Header7 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header7 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header8.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header8.java
index 9e36efc6d..0c2dad68c 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header8.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class Header8 {
protected String xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected String reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -158,7 +161,7 @@ public Header8 setReTrnsmssnCntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header8 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header9.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header9.java
index 20d67d881..1c60ffb93 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header9.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header9 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -130,7 +133,7 @@ public Header9 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header9 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader2.java
index e01075851..70b3ef896 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class InvoiceHeader2 {
protected String tpCd;
@XmlElement(name = "Nm")
protected List nm;
- @XmlElement(name = "IsseDtTm", required = true)
+ @XmlElement(name = "IsseDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar isseDtTm;
@XmlElement(name = "Issr")
@@ -139,7 +142,7 @@ public List getNm() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDtTm() {
@@ -151,7 +154,7 @@ public XMLGregorianCalendar getIsseDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvoiceHeader2 setIsseDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader3.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader3.java
index ebd4fb94f..57cb7ecaf 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader3.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class InvoiceHeader3 {
protected String tpCd;
@XmlElement(name = "Nm")
protected List nm;
- @XmlElement(name = "IsseDtTm", required = true)
+ @XmlElement(name = "IsseDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar isseDtTm;
@XmlElement(name = "Issr")
@@ -139,7 +142,7 @@ public List getNm() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDtTm() {
@@ -151,7 +154,7 @@ public XMLGregorianCalendar getIsseDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvoiceHeader3 setIsseDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem16.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem16.java
index f45668a63..ec22e11b5 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem16.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem16.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -17,7 +19,7 @@
/**
- * Unit of information showing the related provision of products and/or services and monetary summations reported as a discrete line items.
+ * Unit of information showing the related provision of products and/or services and monetary summations reported as a discrete line items.
*
*
*
@@ -104,17 +106,20 @@ public class LineItem16 {
protected Quantity10 measrQtyStart;
@XmlElement(name = "MeasrQtyEnd")
protected Quantity10 measrQtyEnd;
- @XmlElement(name = "MeasrDtTmStart")
+ @XmlElement(name = "MeasrDtTmStart", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmStart;
- @XmlElement(name = "MeasrDtTmEnd")
+ @XmlElement(name = "MeasrDtTmEnd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmEnd;
@XmlElement(name = "ShipTo")
protected TradeParty3 shipTo;
@XmlElement(name = "Incotrms")
protected Incoterms3 incotrms;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "DlvryNoteId")
@@ -740,7 +745,7 @@ public LineItem16 setMeasrQtyEnd(Quantity10 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmStart() {
@@ -752,7 +757,7 @@ public XMLGregorianCalendar getMeasrDtTmStart() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem16 setMeasrDtTmStart(XMLGregorianCalendar value) {
@@ -765,7 +770,7 @@ public LineItem16 setMeasrDtTmStart(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmEnd() {
@@ -777,7 +782,7 @@ public XMLGregorianCalendar getMeasrDtTmEnd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem16 setMeasrDtTmEnd(XMLGregorianCalendar value) {
@@ -840,7 +845,7 @@ public LineItem16 setIncotrms(Incoterms3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -852,7 +857,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem16 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem17.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem17.java
index 04f2b5826..0a80a9078 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem17.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -104,17 +106,20 @@ public class LineItem17 {
protected Quantity16 measrQtyStart;
@XmlElement(name = "MeasrQtyEnd")
protected Quantity16 measrQtyEnd;
- @XmlElement(name = "MeasrDtTmStart")
+ @XmlElement(name = "MeasrDtTmStart", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmStart;
- @XmlElement(name = "MeasrDtTmEnd")
+ @XmlElement(name = "MeasrDtTmEnd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmEnd;
@XmlElement(name = "ShipTo")
protected TradeParty4 shipTo;
@XmlElement(name = "Incotrms")
protected Incoterms3 incotrms;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "DlvryNoteId")
@@ -740,7 +745,7 @@ public LineItem17 setMeasrQtyEnd(Quantity16 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmStart() {
@@ -752,7 +757,7 @@ public XMLGregorianCalendar getMeasrDtTmStart() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem17 setMeasrDtTmStart(XMLGregorianCalendar value) {
@@ -765,7 +770,7 @@ public LineItem17 setMeasrDtTmStart(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmEnd() {
@@ -777,7 +782,7 @@ public XMLGregorianCalendar getMeasrDtTmEnd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem17 setMeasrDtTmEnd(XMLGregorianCalendar value) {
@@ -840,7 +845,7 @@ public LineItem17 setIncotrms(Incoterms3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -852,7 +857,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem17 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation13.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation13.java
index 93c0a4bf2..f9582601f 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation13.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MandateRelatedInformation13 {
@XmlElement(name = "MndtId", required = true)
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "MndtImg")
@@ -65,7 +68,7 @@ public MandateRelatedInformation13 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation13 setDtOfSgntr(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification178Choice.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification178Choice.java
deleted file mode 100644
index 776e0bb44..000000000
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyIdentification178Choice.java
+++ /dev/null
@@ -1,125 +0,0 @@
-
-package com.prowidesoftware.swift.model.mx.dic;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlType;
-import org.apache.commons.lang3.builder.EqualsBuilder;
-import org.apache.commons.lang3.builder.HashCodeBuilder;
-import org.apache.commons.lang3.builder.ToStringBuilder;
-import org.apache.commons.lang3.builder.ToStringStyle;
-
-
-/**
- * Identification of a party.
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "PartyIdentification178Choice", propOrder = {
- "anyBIC",
- "prtryId",
- "nmAndAdr"
-})
-public class PartyIdentification178Choice {
-
- @XmlElement(name = "AnyBIC")
- protected String anyBIC;
- @XmlElement(name = "PrtryId")
- protected GenericIdentification36 prtryId;
- @XmlElement(name = "NmAndAdr")
- protected NameAndAddress6 nmAndAdr;
-
- /**
- * Gets the value of the anyBIC property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getAnyBIC() {
- return anyBIC;
- }
-
- /**
- * Sets the value of the anyBIC property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public PartyIdentification178Choice setAnyBIC(String value) {
- this.anyBIC = value;
- return this;
- }
-
- /**
- * Gets the value of the prtryId property.
- *
- * @return
- * possible object is
- * {@link GenericIdentification36 }
- *
- */
- public GenericIdentification36 getPrtryId() {
- return prtryId;
- }
-
- /**
- * Sets the value of the prtryId property.
- *
- * @param value
- * allowed object is
- * {@link GenericIdentification36 }
- *
- */
- public PartyIdentification178Choice setPrtryId(GenericIdentification36 value) {
- this.prtryId = value;
- return this;
- }
-
- /**
- * Gets the value of the nmAndAdr property.
- *
- * @return
- * possible object is
- * {@link NameAndAddress6 }
- *
- */
- public NameAndAddress6 getNmAndAdr() {
- return nmAndAdr;
- }
-
- /**
- * Sets the value of the nmAndAdr property.
- *
- * @param value
- * allowed object is
- * {@link NameAndAddress6 }
- *
- */
- public PartyIdentification178Choice setNmAndAdr(NameAndAddress6 value) {
- this.nmAndAdr = value;
- return this;
- }
-
- @Override
- public String toString() {
- return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
- }
-
- @Override
- public boolean equals(Object that) {
- return EqualsBuilder.reflectionEquals(this, that);
- }
-
- @Override
- public int hashCode() {
- return HashCodeBuilder.reflectionHashCode(this);
- }
-
-}
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction2.java
index 01f73c247..3e5c04595 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class RecurringTransaction2 {
protected BigDecimal instlmtPrd;
@XmlElement(name = "TtlNbOfPmts")
protected BigDecimal ttlNbOfPmts;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "TtlAmt")
@@ -220,7 +223,7 @@ public RecurringTransaction2 setTtlNbOfPmts(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -232,7 +235,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecurringTransaction2 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSTrigger1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSTrigger1.java
index 1ff49ccdd..135f9e74a 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSTrigger1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSTrigger1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class TMSTrigger1 {
protected TMSContactLevel1Code tmsCtctLvl;
@XmlElement(name = "TMSId")
protected String tmsId;
- @XmlElement(name = "TMSCtctDtTm")
+ @XmlElement(name = "TMSCtctDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmsCtctDtTm;
@@ -91,7 +94,7 @@ public TMSTrigger1 setTMSId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTMSCtctDtTm() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getTMSCtctDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSTrigger1 setTMSCtctDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability1.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability1.java
index 288a64018..e2618d9f9 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability1.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class Traceability1 {
@XmlElement(name = "RlayId", required = true)
protected GenericIdentification31 rlayId;
- @XmlElement(name = "TracDtTmIn", required = true)
+ @XmlElement(name = "TracDtTmIn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmIn;
- @XmlElement(name = "TracDtTmOut", required = true)
+ @XmlElement(name = "TracDtTmOut", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmOut;
@@ -66,7 +70,7 @@ public Traceability1 setRlayId(GenericIdentification31 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmIn() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getTracDtTmIn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability1 setTracDtTmIn(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public Traceability1 setTracDtTmIn(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmOut() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getTracDtTmOut() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability1 setTracDtTmOut(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability2.java
index 2220c9555..e87457133 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class Traceability2 {
@XmlElement(name = "RlayId", required = true)
protected GenericIdentification76 rlayId;
- @XmlElement(name = "TracDtTmIn", required = true)
+ @XmlElement(name = "TracDtTmIn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmIn;
- @XmlElement(name = "TracDtTmOut", required = true)
+ @XmlElement(name = "TracDtTmOut", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmOut;
@@ -66,7 +70,7 @@ public Traceability2 setRlayId(GenericIdentification76 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmIn() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getTracDtTmIn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability2 setTracDtTmIn(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public Traceability2 setTracDtTmIn(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmOut() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getTracDtTmOut() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability2 setTracDtTmOut(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability5.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability5.java
index 2b393b1f4..6db577f5a 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability5.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,10 +37,12 @@ public class Traceability5 {
protected String prtcolNm;
@XmlElement(name = "PrtcolVrsn")
protected String prtcolVrsn;
- @XmlElement(name = "TracDtTmIn", required = true)
+ @XmlElement(name = "TracDtTmIn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmIn;
- @XmlElement(name = "TracDtTmOut", required = true)
+ @XmlElement(name = "TracDtTmOut", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmOut;
@@ -122,7 +126,7 @@ public Traceability5 setPrtcolVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmIn() {
@@ -134,7 +138,7 @@ public XMLGregorianCalendar getTracDtTmIn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability5 setTracDtTmIn(XMLGregorianCalendar value) {
@@ -147,7 +151,7 @@ public Traceability5 setTracDtTmIn(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmOut() {
@@ -159,7 +163,7 @@ public XMLGregorianCalendar getTracDtTmOut() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability5 setTracDtTmOut(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery2.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery2.java
index cd41954e9..5322b0149 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery2.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class TradeDelivery2 {
@XmlElement(name = "DlvryPrd")
protected Period1 dlvryPrd;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "ShipFr")
@@ -79,7 +82,7 @@ public TradeDelivery2 setDlvryPrd(Period1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -91,7 +94,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeDelivery2 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery3.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery3.java
index bad4be050..0b15171d2 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery3.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class TradeDelivery3 {
@XmlElement(name = "DlvryPrd")
protected Period14 dlvryPrd;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "ShipFr")
@@ -79,7 +82,7 @@ public TradeDelivery3 setDlvryPrd(Period14 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -91,7 +94,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeDelivery3 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TypeTransactionTotals2Code.java b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TypeTransactionTotals2Code.java
index 28b830199..734d4910a 100644
--- a/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TypeTransactionTotals2Code.java
+++ b/model-caaa-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TypeTransactionTotals2Code.java
@@ -30,7 +30,7 @@ public enum TypeTransactionTotals2Code {
/**
- * Credit transactions (refund, account, cash service, as defined in the transaction service type).
+ * Credit transactions (refund, account, cash service, as defined in the transaction service type).
*
*/
CRDT,
@@ -42,7 +42,7 @@ public enum TypeTransactionTotals2Code {
CRDR,
/**
- * Debit transactions on the cardholder account.
+ * Debit transactions on the cardholder account .
*
*/
DEBT,
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100101.java
index c2d005663..e8d99c643 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00100101 parse(String xml) {
- return ((MxCaam00100101) MxReadImpl.parse(MxCaam00100101 .class, xml, _classes));
+ return ((MxCaam00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100102.java
index 582c538e8..49227a10f 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00100102 parse(String xml) {
- return ((MxCaam00100102) MxReadImpl.parse(MxCaam00100102 .class, xml, _classes));
+ return ((MxCaam00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100103.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100103.java
index 2a76718e9..c76e3240f 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100103.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00100103 parse(String xml) {
- return ((MxCaam00100103) MxReadImpl.parse(MxCaam00100103 .class, xml, _classes));
+ return ((MxCaam00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200101.java
index 3e789eff5..5caf426cb 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00200101 parse(String xml) {
- return ((MxCaam00200101) MxReadImpl.parse(MxCaam00200101 .class, xml, _classes));
+ return ((MxCaam00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200102.java
index 2c6b3c0a1..c06dbf1b1 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00200102 parse(String xml) {
- return ((MxCaam00200102) MxReadImpl.parse(MxCaam00200102 .class, xml, _classes));
+ return ((MxCaam00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200103.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200103.java
index b876c17ea..fc943de0b 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200103.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00200103 parse(String xml) {
- return ((MxCaam00200103) MxReadImpl.parse(MxCaam00200103 .class, xml, _classes));
+ return ((MxCaam00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300101.java
index 5eda7657e..71455a70c 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00300101 parse(String xml) {
- return ((MxCaam00300101) MxReadImpl.parse(MxCaam00300101 .class, xml, _classes));
+ return ((MxCaam00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300102.java
index 999ce537d..42c2d24e8 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00300102 parse(String xml) {
- return ((MxCaam00300102) MxReadImpl.parse(MxCaam00300102 .class, xml, _classes));
+ return ((MxCaam00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300103.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300103.java
index 707de14f9..3aee01191 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300103.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00300103 parse(String xml) {
- return ((MxCaam00300103) MxReadImpl.parse(MxCaam00300103 .class, xml, _classes));
+ return ((MxCaam00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400101.java
index 1fa55d4e0..4c38b6513 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00400101 parse(String xml) {
- return ((MxCaam00400101) MxReadImpl.parse(MxCaam00400101 .class, xml, _classes));
+ return ((MxCaam00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400102.java
index 7db4f5a5a..61dee427a 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00400102 parse(String xml) {
- return ((MxCaam00400102) MxReadImpl.parse(MxCaam00400102 .class, xml, _classes));
+ return ((MxCaam00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400103.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400103.java
index 85f091970..c89e463b3 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400103.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00400103 parse(String xml) {
- return ((MxCaam00400103) MxReadImpl.parse(MxCaam00400103 .class, xml, _classes));
+ return ((MxCaam00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500101.java
index 345fdd4e7..f0c350fdc 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00500101 parse(String xml) {
- return ((MxCaam00500101) MxReadImpl.parse(MxCaam00500101 .class, xml, _classes));
+ return ((MxCaam00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500102.java
index 450488b15..bd54b625b 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00500102 parse(String xml) {
- return ((MxCaam00500102) MxReadImpl.parse(MxCaam00500102 .class, xml, _classes));
+ return ((MxCaam00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600101.java
index eda091de8..77bc8bab1 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00600101 parse(String xml) {
- return ((MxCaam00600101) MxReadImpl.parse(MxCaam00600101 .class, xml, _classes));
+ return ((MxCaam00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600102.java
index b5bf2bdf2..1113880ce 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00600102 parse(String xml) {
- return ((MxCaam00600102) MxReadImpl.parse(MxCaam00600102 .class, xml, _classes));
+ return ((MxCaam00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00700101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00700101.java
index ee192716a..262c9565f 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00700101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00700101 parse(String xml) {
- return ((MxCaam00700101) MxReadImpl.parse(MxCaam00700101 .class, xml, _classes));
+ return ((MxCaam00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00800101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00800101.java
index 8c7e3dea0..8e3b2e812 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00800101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00800101 parse(String xml) {
- return ((MxCaam00800101) MxReadImpl.parse(MxCaam00800101 .class, xml, _classes));
+ return ((MxCaam00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900101.java
index 4da4b5963..dbbe1bf70 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00900101 parse(String xml) {
- return ((MxCaam00900101) MxReadImpl.parse(MxCaam00900101 .class, xml, _classes));
+ return ((MxCaam00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900102.java
index 09b1ef4a9..0a8d7aab0 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam00900102 parse(String xml) {
- return ((MxCaam00900102) MxReadImpl.parse(MxCaam00900102 .class, xml, _classes));
+ return ((MxCaam00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000101.java
index 6826331ee..07bfb44a0 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam01000101 parse(String xml) {
- return ((MxCaam01000101) MxReadImpl.parse(MxCaam01000101 .class, xml, _classes));
+ return ((MxCaam01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000102.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000102.java
index 0cb6123c0..4ddeaf8a4 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000102.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam01000102 parse(String xml) {
- return ((MxCaam01000102) MxReadImpl.parse(MxCaam01000102 .class, xml, _classes));
+ return ((MxCaam01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01100101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01100101.java
index 18f7b133c..8c78ae6db 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01100101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam01100101 parse(String xml) {
- return ((MxCaam01100101) MxReadImpl.parse(MxCaam01100101 .class, xml, _classes));
+ return ((MxCaam01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01200101.java b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01200101.java
index c27d51ecd..93938cfbf 100644
--- a/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01200101.java
+++ b/model-caam-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCaam01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCaam01200101 parse(String xml) {
- return ((MxCaam01200101) MxReadImpl.parse(MxCaam01200101 .class, xml, _classes));
+ return ((MxCaam01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCaam01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCaam01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCaam01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand10.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand10.java
index 475ca05fa..e93cc94b0 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand10.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class ATMCommand10 {
@XmlElement(name = "Urgcy", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel2Code urgcy;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CmdId")
@@ -111,7 +114,7 @@ public ATMCommand10 setUrgcy(TMSContactLevel2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -123,7 +126,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand10 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand11.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand11.java
index 31ded72fb..e2bed6a3e 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand11.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ATMCommand11 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ATMCommand6Code tp;
- @XmlElement(name = "ReqrdDtTm")
+ @XmlElement(name = "ReqrdDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqrdDtTm;
- @XmlElement(name = "PrcdDtTm", required = true)
+ @XmlElement(name = "PrcdDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prcdDtTm;
@XmlElement(name = "CmdId")
@@ -77,7 +81,7 @@ public ATMCommand11 setTp(ATMCommand6Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqrdDtTm() {
@@ -89,7 +93,7 @@ public XMLGregorianCalendar getReqrdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand11 setReqrdDtTm(XMLGregorianCalendar value) {
@@ -102,7 +106,7 @@ public ATMCommand11 setReqrdDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrcdDtTm() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getPrcdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand11 setPrcdDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand13.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand13.java
index 37c26b8e5..2c112ef1f 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand13.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class ATMCommand13 {
@XmlElement(name = "Urgcy", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel2Code urgcy;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CmdId")
@@ -98,7 +101,7 @@ public ATMCommand13 setUrgcy(TMSContactLevel2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -110,7 +113,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand13 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand2.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand2.java
index 689913410..002235b4b 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand2.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ATMCommand2 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ATMCommand2Code tp;
- @XmlElement(name = "ReqrdDtTm")
+ @XmlElement(name = "ReqrdDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqrdDtTm;
- @XmlElement(name = "PrcdDtTm", required = true)
+ @XmlElement(name = "PrcdDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prcdDtTm;
@XmlElement(name = "CmdId")
@@ -77,7 +81,7 @@ public ATMCommand2 setTp(ATMCommand2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqrdDtTm() {
@@ -89,7 +93,7 @@ public XMLGregorianCalendar getReqrdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand2 setReqrdDtTm(XMLGregorianCalendar value) {
@@ -102,7 +106,7 @@ public ATMCommand2 setReqrdDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrcdDtTm() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getPrcdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand2 setPrcdDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand4.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand4.java
index fde4bf12f..43659847e 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand4.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class ATMCommand4 {
@XmlElement(name = "Urgcy", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel2Code urgcy;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CmdId")
@@ -111,7 +114,7 @@ public ATMCommand4 setUrgcy(TMSContactLevel2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -123,7 +126,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand4 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand5.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand5.java
index af9f89bb4..61669b988 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand5.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ATMCommand5 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ATMCommand3Code tp;
- @XmlElement(name = "ReqrdDtTm")
+ @XmlElement(name = "ReqrdDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqrdDtTm;
- @XmlElement(name = "PrcdDtTm", required = true)
+ @XmlElement(name = "PrcdDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prcdDtTm;
@XmlElement(name = "CmdId")
@@ -77,7 +81,7 @@ public ATMCommand5 setTp(ATMCommand3Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqrdDtTm() {
@@ -89,7 +93,7 @@ public XMLGregorianCalendar getReqrdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand5 setReqrdDtTm(XMLGregorianCalendar value) {
@@ -102,7 +106,7 @@ public ATMCommand5 setReqrdDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrcdDtTm() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getPrcdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand5 setPrcdDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand8.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand8.java
index 89d9ebc90..75c144e1f 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand8.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ATMCommand8 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ATMCommand5Code tp;
- @XmlElement(name = "ReqrdDtTm")
+ @XmlElement(name = "ReqrdDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqrdDtTm;
- @XmlElement(name = "PrcdDtTm", required = true)
+ @XmlElement(name = "PrcdDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prcdDtTm;
@XmlElement(name = "CmdId")
@@ -77,7 +81,7 @@ public ATMCommand8 setTp(ATMCommand5Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqrdDtTm() {
@@ -89,7 +93,7 @@ public XMLGregorianCalendar getReqrdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand8 setReqrdDtTm(XMLGregorianCalendar value) {
@@ -102,7 +106,7 @@ public ATMCommand8 setReqrdDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrcdDtTm() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getPrcdDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand8 setPrcdDtTm(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey11.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey11.java
index 25146703d..1c8b2c17c 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey11.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey11.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class CryptographicKey11 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyChckVal")
@@ -280,7 +284,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -292,7 +296,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey11 setActvtnDt(XMLGregorianCalendar value) {
@@ -305,7 +309,7 @@ public CryptographicKey11 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -317,7 +321,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey11 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey12.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey12.java
index deda73095..0d57586bd 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey12.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class CryptographicKey12 {
@XmlElement(name = "Fctn")
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyChckVal")
@@ -278,7 +282,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -290,7 +294,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey12 setActvtnDt(XMLGregorianCalendar value) {
@@ -303,7 +307,7 @@ public CryptographicKey12 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -315,7 +319,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey12 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey7.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey7.java
index ad6b6112e..e3f14b2c1 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey7.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey7.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class CryptographicKey7 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyChckVal")
@@ -280,7 +284,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -292,7 +296,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey7 setActvtnDt(XMLGregorianCalendar value) {
@@ -305,7 +309,7 @@ public CryptographicKey7 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -317,7 +321,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey7 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey8.java b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey8.java
index 194a697e2..02b5af552 100644
--- a/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey8.java
+++ b/model-caam-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,10 +60,12 @@ public class CryptographicKey8 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyChckVal")
@@ -278,7 +282,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -290,7 +294,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey8 setActvtnDt(XMLGregorianCalendar value) {
@@ -303,7 +307,7 @@ public CryptographicKey8 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -315,7 +319,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey8 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300102.java
index 4c6e7dc2a..04af74cb0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300102 parse(String xml) {
- return ((MxCamt00300102) MxReadImpl.parse(MxCamt00300102 .class, xml, _classes));
+ return ((MxCamt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300103.java
index f575a3bf5..6904c200a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300103 parse(String xml) {
- return ((MxCamt00300103) MxReadImpl.parse(MxCamt00300103 .class, xml, _classes));
+ return ((MxCamt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300104.java
index fc4e2b985..cb3687814 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300104 parse(String xml) {
- return ((MxCamt00300104) MxReadImpl.parse(MxCamt00300104 .class, xml, _classes));
+ return ((MxCamt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300105.java
index 9a7c4ba4f..09a60bfdc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300105 parse(String xml) {
- return ((MxCamt00300105) MxReadImpl.parse(MxCamt00300105 .class, xml, _classes));
+ return ((MxCamt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300106.java
index 8bc267db5..9d1378e08 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300106 parse(String xml) {
- return ((MxCamt00300106) MxReadImpl.parse(MxCamt00300106 .class, xml, _classes));
+ return ((MxCamt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300107.java
index 19da14468..adeaf473f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00300107 parse(String xml) {
- return ((MxCamt00300107) MxReadImpl.parse(MxCamt00300107 .class, xml, _classes));
+ return ((MxCamt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400102.java
index f3986188b..b36c04128 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400102 parse(String xml) {
- return ((MxCamt00400102) MxReadImpl.parse(MxCamt00400102 .class, xml, _classes));
+ return ((MxCamt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400103.java
index 6620e5c71..049138718 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400103 parse(String xml) {
- return ((MxCamt00400103) MxReadImpl.parse(MxCamt00400103 .class, xml, _classes));
+ return ((MxCamt00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400104.java
index 87299533d..673099151 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400104 parse(String xml) {
- return ((MxCamt00400104) MxReadImpl.parse(MxCamt00400104 .class, xml, _classes));
+ return ((MxCamt00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400105.java
index 182c00c6c..f22b578ad 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400105 parse(String xml) {
- return ((MxCamt00400105) MxReadImpl.parse(MxCamt00400105 .class, xml, _classes));
+ return ((MxCamt00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400106.java
index cd860fbfc..011c32dda 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400106 parse(String xml) {
- return ((MxCamt00400106) MxReadImpl.parse(MxCamt00400106 .class, xml, _classes));
+ return ((MxCamt00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400107.java
index 6e20b077c..0a29343ff 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400107 parse(String xml) {
- return ((MxCamt00400107) MxReadImpl.parse(MxCamt00400107 .class, xml, _classes));
+ return ((MxCamt00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400108.java
index 13734dbcc..fed05fb7b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400108 parse(String xml) {
- return ((MxCamt00400108) MxReadImpl.parse(MxCamt00400108 .class, xml, _classes));
+ return ((MxCamt00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400109.java
index 6ae649769..38fddd47b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00400109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00400109 parse(String xml) {
- return ((MxCamt00400109) MxReadImpl.parse(MxCamt00400109 .class, xml, _classes));
+ return ((MxCamt00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00400109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500103.java
index 89e5696fd..a7e2ff2ac 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500103 parse(String xml) {
- return ((MxCamt00500103) MxReadImpl.parse(MxCamt00500103 .class, xml, _classes));
+ return ((MxCamt00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500104.java
index dde27647d..07e1039a3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500104 parse(String xml) {
- return ((MxCamt00500104) MxReadImpl.parse(MxCamt00500104 .class, xml, _classes));
+ return ((MxCamt00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500105.java
index dff89d3d3..e580a4dfd 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500105 parse(String xml) {
- return ((MxCamt00500105) MxReadImpl.parse(MxCamt00500105 .class, xml, _classes));
+ return ((MxCamt00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500106.java
index 50ce4431a..0822f073d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500106 parse(String xml) {
- return ((MxCamt00500106) MxReadImpl.parse(MxCamt00500106 .class, xml, _classes));
+ return ((MxCamt00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500107.java
index e63dda9b9..7db06eef6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500107 parse(String xml) {
- return ((MxCamt00500107) MxReadImpl.parse(MxCamt00500107 .class, xml, _classes));
+ return ((MxCamt00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500108.java
index a8999c92f..6c506be66 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500108 parse(String xml) {
- return ((MxCamt00500108) MxReadImpl.parse(MxCamt00500108 .class, xml, _classes));
+ return ((MxCamt00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500109.java
index 11fa5f337..e2acb8bf6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00500109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00500109 parse(String xml) {
- return ((MxCamt00500109) MxReadImpl.parse(MxCamt00500109 .class, xml, _classes));
+ return ((MxCamt00500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00500109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600102.java
index 585ba0979..10dec77f5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600102 parse(String xml) {
- return ((MxCamt00600102) MxReadImpl.parse(MxCamt00600102 .class, xml, _classes));
+ return ((MxCamt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600103.java
index 527c360a2..92d9e3941 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600103 parse(String xml) {
- return ((MxCamt00600103) MxReadImpl.parse(MxCamt00600103 .class, xml, _classes));
+ return ((MxCamt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600104.java
index 774dbff7a..6a6c29380 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600104 parse(String xml) {
- return ((MxCamt00600104) MxReadImpl.parse(MxCamt00600104 .class, xml, _classes));
+ return ((MxCamt00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600105.java
index 775e155b1..92cd9c938 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600105 parse(String xml) {
- return ((MxCamt00600105) MxReadImpl.parse(MxCamt00600105 .class, xml, _classes));
+ return ((MxCamt00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600106.java
index fa14ae301..431d58014 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600106 parse(String xml) {
- return ((MxCamt00600106) MxReadImpl.parse(MxCamt00600106 .class, xml, _classes));
+ return ((MxCamt00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600107.java
index aa1795daa..6bd45c59e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600107 parse(String xml) {
- return ((MxCamt00600107) MxReadImpl.parse(MxCamt00600107 .class, xml, _classes));
+ return ((MxCamt00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600108.java
index b6e4ae754..5af617ace 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600108 parse(String xml) {
- return ((MxCamt00600108) MxReadImpl.parse(MxCamt00600108 .class, xml, _classes));
+ return ((MxCamt00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600109.java
index 6d6d1c55a..a85f51b48 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00600109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00600109 parse(String xml) {
- return ((MxCamt00600109) MxReadImpl.parse(MxCamt00600109 .class, xml, _classes));
+ return ((MxCamt00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00600109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700102.java
index 48dea7fc6..dc6c42475 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700102 parse(String xml) {
- return ((MxCamt00700102) MxReadImpl.parse(MxCamt00700102 .class, xml, _classes));
+ return ((MxCamt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700103.java
index 97a9d44fa..67e362388 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700103 parse(String xml) {
- return ((MxCamt00700103) MxReadImpl.parse(MxCamt00700103 .class, xml, _classes));
+ return ((MxCamt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700104.java
index 9e12f430a..2f0071dd5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700104 parse(String xml) {
- return ((MxCamt00700104) MxReadImpl.parse(MxCamt00700104 .class, xml, _classes));
+ return ((MxCamt00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700105.java
index 77e6565cb..b8947e292 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700105 parse(String xml) {
- return ((MxCamt00700105) MxReadImpl.parse(MxCamt00700105 .class, xml, _classes));
+ return ((MxCamt00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700106.java
index 5c6893390..1d8315987 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700106 parse(String xml) {
- return ((MxCamt00700106) MxReadImpl.parse(MxCamt00700106 .class, xml, _classes));
+ return ((MxCamt00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700107.java
index 438e1f108..979c62d8e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700107 parse(String xml) {
- return ((MxCamt00700107) MxReadImpl.parse(MxCamt00700107 .class, xml, _classes));
+ return ((MxCamt00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700108.java
index 019022240..8554b42a2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700108 parse(String xml) {
- return ((MxCamt00700108) MxReadImpl.parse(MxCamt00700108 .class, xml, _classes));
+ return ((MxCamt00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700201.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700201.java
index 6908e762a..62c02c95a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700201.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700201.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700201 parse(String xml) {
- return ((MxCamt00700201) MxReadImpl.parse(MxCamt00700201 .class, xml, _classes));
+ return ((MxCamt00700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700201 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700202.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700202.java
index b642c65b1..2cfbd5116 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700202.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700202 parse(String xml) {
- return ((MxCamt00700202) MxReadImpl.parse(MxCamt00700202 .class, xml, _classes));
+ return ((MxCamt00700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700203.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700203.java
index 112b7c170..6def53edb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700203.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00700203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00700203 parse(String xml) {
- return ((MxCamt00700203) MxReadImpl.parse(MxCamt00700203 .class, xml, _classes));
+ return ((MxCamt00700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00700203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800102.java
index c26e1d022..5c8631d98 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800102 parse(String xml) {
- return ((MxCamt00800102) MxReadImpl.parse(MxCamt00800102 .class, xml, _classes));
+ return ((MxCamt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800103.java
index 061042c43..7f48bb0d2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800103 parse(String xml) {
- return ((MxCamt00800103) MxReadImpl.parse(MxCamt00800103 .class, xml, _classes));
+ return ((MxCamt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800104.java
index 949279e9d..06045ea92 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800104 parse(String xml) {
- return ((MxCamt00800104) MxReadImpl.parse(MxCamt00800104 .class, xml, _classes));
+ return ((MxCamt00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800105.java
index d9f1e5ecf..358120db2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800105 parse(String xml) {
- return ((MxCamt00800105) MxReadImpl.parse(MxCamt00800105 .class, xml, _classes));
+ return ((MxCamt00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800106.java
index 070cc20b2..2213da18e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800106 parse(String xml) {
- return ((MxCamt00800106) MxReadImpl.parse(MxCamt00800106 .class, xml, _classes));
+ return ((MxCamt00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800107.java
index 305328c5f..3813eed78 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800107 parse(String xml) {
- return ((MxCamt00800107) MxReadImpl.parse(MxCamt00800107 .class, xml, _classes));
+ return ((MxCamt00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800108.java
index a3c7f65fa..01e191630 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800108 parse(String xml) {
- return ((MxCamt00800108) MxReadImpl.parse(MxCamt00800108 .class, xml, _classes));
+ return ((MxCamt00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800109.java
index a5c058aad..39e524f71 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800109 parse(String xml) {
- return ((MxCamt00800109) MxReadImpl.parse(MxCamt00800109 .class, xml, _classes));
+ return ((MxCamt00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800201.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800201.java
index 1db159e5c..dd1572601 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800201.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800201.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800201 parse(String xml) {
- return ((MxCamt00800201) MxReadImpl.parse(MxCamt00800201 .class, xml, _classes));
+ return ((MxCamt00800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800201 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800201) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800201 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800202.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800202.java
index 1f43e131c..1886d617f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800202.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00800202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00800202 parse(String xml) {
- return ((MxCamt00800202) MxReadImpl.parse(MxCamt00800202 .class, xml, _classes));
+ return ((MxCamt00800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00800202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900103.java
index 6facf5484..05be1c5f8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00900103 parse(String xml) {
- return ((MxCamt00900103) MxReadImpl.parse(MxCamt00900103 .class, xml, _classes));
+ return ((MxCamt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900104.java
index 3bf96efe2..bbf6082f4 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00900104 parse(String xml) {
- return ((MxCamt00900104) MxReadImpl.parse(MxCamt00900104 .class, xml, _classes));
+ return ((MxCamt00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900105.java
index 7f88713cb..b50c65614 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00900105 parse(String xml) {
- return ((MxCamt00900105) MxReadImpl.parse(MxCamt00900105 .class, xml, _classes));
+ return ((MxCamt00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900106.java
index 61ccb0826..90644471c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00900106 parse(String xml) {
- return ((MxCamt00900106) MxReadImpl.parse(MxCamt00900106 .class, xml, _classes));
+ return ((MxCamt00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900107.java
index cf1577d8f..8a6ff53f3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt00900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt00900107 parse(String xml) {
- return ((MxCamt00900107) MxReadImpl.parse(MxCamt00900107 .class, xml, _classes));
+ return ((MxCamt00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt00900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000102.java
index 0520a6005..b01dac994 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000102 parse(String xml) {
- return ((MxCamt01000102) MxReadImpl.parse(MxCamt01000102 .class, xml, _classes));
+ return ((MxCamt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000103.java
index f14cbd829..8b9b0350a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000103 parse(String xml) {
- return ((MxCamt01000103) MxReadImpl.parse(MxCamt01000103 .class, xml, _classes));
+ return ((MxCamt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000104.java
index 5aee8316f..ad235d312 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000104 parse(String xml) {
- return ((MxCamt01000104) MxReadImpl.parse(MxCamt01000104 .class, xml, _classes));
+ return ((MxCamt01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000105.java
index d479d796f..955259006 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000105 parse(String xml) {
- return ((MxCamt01000105) MxReadImpl.parse(MxCamt01000105 .class, xml, _classes));
+ return ((MxCamt01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000106.java
index 60b5bbc0b..54cccc8ef 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000106 parse(String xml) {
- return ((MxCamt01000106) MxReadImpl.parse(MxCamt01000106 .class, xml, _classes));
+ return ((MxCamt01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000107.java
index 5c4900df7..518ecf58a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000107 parse(String xml) {
- return ((MxCamt01000107) MxReadImpl.parse(MxCamt01000107 .class, xml, _classes));
+ return ((MxCamt01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000108.java
index 542619dd4..ef464a72e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01000108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01000108 parse(String xml) {
- return ((MxCamt01000108) MxReadImpl.parse(MxCamt01000108 .class, xml, _classes));
+ return ((MxCamt01000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01000108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01000108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01000108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100102.java
index a2fd5fbc0..0bcdce2b8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100102 parse(String xml) {
- return ((MxCamt01100102) MxReadImpl.parse(MxCamt01100102 .class, xml, _classes));
+ return ((MxCamt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100103.java
index 65d22e4ab..7f40bbb45 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100103 parse(String xml) {
- return ((MxCamt01100103) MxReadImpl.parse(MxCamt01100103 .class, xml, _classes));
+ return ((MxCamt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100104.java
index 8328d94e5..2ba4fd673 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100104 parse(String xml) {
- return ((MxCamt01100104) MxReadImpl.parse(MxCamt01100104 .class, xml, _classes));
+ return ((MxCamt01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100105.java
index 4793702a8..840e6933b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100105 parse(String xml) {
- return ((MxCamt01100105) MxReadImpl.parse(MxCamt01100105 .class, xml, _classes));
+ return ((MxCamt01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100106.java
index af9de29bf..583891a91 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100106 parse(String xml) {
- return ((MxCamt01100106) MxReadImpl.parse(MxCamt01100106 .class, xml, _classes));
+ return ((MxCamt01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100107.java
index 3e3cb35f5..e2f2265c0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01100107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01100107 parse(String xml) {
- return ((MxCamt01100107) MxReadImpl.parse(MxCamt01100107 .class, xml, _classes));
+ return ((MxCamt01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01100107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200102.java
index 25b7b0cba..36a2db013 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200102 parse(String xml) {
- return ((MxCamt01200102) MxReadImpl.parse(MxCamt01200102 .class, xml, _classes));
+ return ((MxCamt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200103.java
index cc8e38d83..61f37c25d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200103 parse(String xml) {
- return ((MxCamt01200103) MxReadImpl.parse(MxCamt01200103 .class, xml, _classes));
+ return ((MxCamt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200104.java
index 7803a1cc1..7df7246a2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200104 parse(String xml) {
- return ((MxCamt01200104) MxReadImpl.parse(MxCamt01200104 .class, xml, _classes));
+ return ((MxCamt01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200105.java
index aaebc9d3b..f0433638d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200105 parse(String xml) {
- return ((MxCamt01200105) MxReadImpl.parse(MxCamt01200105 .class, xml, _classes));
+ return ((MxCamt01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200106.java
index 9ded19c0a..c2e5df50e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200106 parse(String xml) {
- return ((MxCamt01200106) MxReadImpl.parse(MxCamt01200106 .class, xml, _classes));
+ return ((MxCamt01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200107.java
index 0a82b5bb8..e9b9be034 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01200107 parse(String xml) {
- return ((MxCamt01200107) MxReadImpl.parse(MxCamt01200107 .class, xml, _classes));
+ return ((MxCamt01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300101.java
index 9ac7313ef..5b0f396ae 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01300101 parse(String xml) {
- return ((MxCamt01300101) MxReadImpl.parse(MxCamt01300101 .class, xml, _classes));
+ return ((MxCamt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300102.java
index 74f4ec9df..5ed6c36ed 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01300102 parse(String xml) {
- return ((MxCamt01300102) MxReadImpl.parse(MxCamt01300102 .class, xml, _classes));
+ return ((MxCamt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300103.java
index 6cbb319a9..ce8746791 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01300103 parse(String xml) {
- return ((MxCamt01300103) MxReadImpl.parse(MxCamt01300103 .class, xml, _classes));
+ return ((MxCamt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300104.java
index b873387e7..ddf960138 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01300104 parse(String xml) {
- return ((MxCamt01300104) MxReadImpl.parse(MxCamt01300104 .class, xml, _classes));
+ return ((MxCamt01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400101.java
index f8d4059f2..76df9f084 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01400101 parse(String xml) {
- return ((MxCamt01400101) MxReadImpl.parse(MxCamt01400101 .class, xml, _classes));
+ return ((MxCamt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400102.java
index a9e141de6..e7dc5e8ca 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01400102 parse(String xml) {
- return ((MxCamt01400102) MxReadImpl.parse(MxCamt01400102 .class, xml, _classes));
+ return ((MxCamt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400103.java
index 627e4218d..8834229c2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01400103 parse(String xml) {
- return ((MxCamt01400103) MxReadImpl.parse(MxCamt01400103 .class, xml, _classes));
+ return ((MxCamt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400104.java
index 22e0312a3..622b58025 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01400104 parse(String xml) {
- return ((MxCamt01400104) MxReadImpl.parse(MxCamt01400104 .class, xml, _classes));
+ return ((MxCamt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400105.java
index ba797c4d1..62eacda9f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01400105 parse(String xml) {
- return ((MxCamt01400105) MxReadImpl.parse(MxCamt01400105 .class, xml, _classes));
+ return ((MxCamt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500101.java
index 4a4a8e887..c52df35d9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01500101 parse(String xml) {
- return ((MxCamt01500101) MxReadImpl.parse(MxCamt01500101 .class, xml, _classes));
+ return ((MxCamt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500102.java
index 9ba98d94a..82a1a6cff 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01500102 parse(String xml) {
- return ((MxCamt01500102) MxReadImpl.parse(MxCamt01500102 .class, xml, _classes));
+ return ((MxCamt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500103.java
index bc16090be..d96d76fd9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01500103 parse(String xml) {
- return ((MxCamt01500103) MxReadImpl.parse(MxCamt01500103 .class, xml, _classes));
+ return ((MxCamt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500104.java
index 5b314a49c..505103beb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01500104 parse(String xml) {
- return ((MxCamt01500104) MxReadImpl.parse(MxCamt01500104 .class, xml, _classes));
+ return ((MxCamt01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600101.java
index 3fbfcacd3..e6cb4b4a8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01600101 parse(String xml) {
- return ((MxCamt01600101) MxReadImpl.parse(MxCamt01600101 .class, xml, _classes));
+ return ((MxCamt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600102.java
index ec78dd99c..3861fc6ea 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01600102 parse(String xml) {
- return ((MxCamt01600102) MxReadImpl.parse(MxCamt01600102 .class, xml, _classes));
+ return ((MxCamt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600103.java
index c6866baf2..5d223d760 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01600103 parse(String xml) {
- return ((MxCamt01600103) MxReadImpl.parse(MxCamt01600103 .class, xml, _classes));
+ return ((MxCamt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600104.java
index 5ceff615d..c5dbb2dfa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01600104 parse(String xml) {
- return ((MxCamt01600104) MxReadImpl.parse(MxCamt01600104 .class, xml, _classes));
+ return ((MxCamt01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700101.java
index 7a63fdb6a..f994b9876 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01700101 parse(String xml) {
- return ((MxCamt01700101) MxReadImpl.parse(MxCamt01700101 .class, xml, _classes));
+ return ((MxCamt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700102.java
index 2e08af42d..44879be5e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01700102 parse(String xml) {
- return ((MxCamt01700102) MxReadImpl.parse(MxCamt01700102 .class, xml, _classes));
+ return ((MxCamt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700103.java
index 432464cae..05cf1fb65 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01700103 parse(String xml) {
- return ((MxCamt01700103) MxReadImpl.parse(MxCamt01700103 .class, xml, _classes));
+ return ((MxCamt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700104.java
index 9d3bc484d..a0856701c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01700104 parse(String xml) {
- return ((MxCamt01700104) MxReadImpl.parse(MxCamt01700104 .class, xml, _classes));
+ return ((MxCamt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700105.java
index 944985509..7c30235eb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01700105 parse(String xml) {
- return ((MxCamt01700105) MxReadImpl.parse(MxCamt01700105 .class, xml, _classes));
+ return ((MxCamt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800101.java
index 999204df3..464467867 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01800101 parse(String xml) {
- return ((MxCamt01800101) MxReadImpl.parse(MxCamt01800101 .class, xml, _classes));
+ return ((MxCamt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800102.java
index 81db2681a..0fbdb47ed 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01800102 parse(String xml) {
- return ((MxCamt01800102) MxReadImpl.parse(MxCamt01800102 .class, xml, _classes));
+ return ((MxCamt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800103.java
index f587e98a7..a4ba3a7ea 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01800103 parse(String xml) {
- return ((MxCamt01800103) MxReadImpl.parse(MxCamt01800103 .class, xml, _classes));
+ return ((MxCamt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800104.java
index e27516480..080ddf93e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01800104 parse(String xml) {
- return ((MxCamt01800104) MxReadImpl.parse(MxCamt01800104 .class, xml, _classes));
+ return ((MxCamt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800105.java
index 0238892d4..136cc8ffa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01800105 parse(String xml) {
- return ((MxCamt01800105) MxReadImpl.parse(MxCamt01800105 .class, xml, _classes));
+ return ((MxCamt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900102.java
index a1a694062..820c0107b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900102 parse(String xml) {
- return ((MxCamt01900102) MxReadImpl.parse(MxCamt01900102 .class, xml, _classes));
+ return ((MxCamt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900103.java
index fb5d67da5..eeca93f7e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900103 parse(String xml) {
- return ((MxCamt01900103) MxReadImpl.parse(MxCamt01900103 .class, xml, _classes));
+ return ((MxCamt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900104.java
index ac54c2dc9..2d596e02e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900104 parse(String xml) {
- return ((MxCamt01900104) MxReadImpl.parse(MxCamt01900104 .class, xml, _classes));
+ return ((MxCamt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900105.java
index 9725a73b1..ab1041cd1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900105 parse(String xml) {
- return ((MxCamt01900105) MxReadImpl.parse(MxCamt01900105 .class, xml, _classes));
+ return ((MxCamt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900106.java
index 81634906e..2d1d0d747 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900106 parse(String xml) {
- return ((MxCamt01900106) MxReadImpl.parse(MxCamt01900106 .class, xml, _classes));
+ return ((MxCamt01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900107.java
index 90f492b4f..8bdbfe818 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt01900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt01900107 parse(String xml) {
- return ((MxCamt01900107) MxReadImpl.parse(MxCamt01900107 .class, xml, _classes));
+ return ((MxCamt01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt01900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt01900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt01900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000101.java
index 11822ecda..c3608a56a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02000101 parse(String xml) {
- return ((MxCamt02000101) MxReadImpl.parse(MxCamt02000101 .class, xml, _classes));
+ return ((MxCamt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000102.java
index da35fb8ec..7e839216b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02000102 parse(String xml) {
- return ((MxCamt02000102) MxReadImpl.parse(MxCamt02000102 .class, xml, _classes));
+ return ((MxCamt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000103.java
index 8de0e232d..0c021c93a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02000103 parse(String xml) {
- return ((MxCamt02000103) MxReadImpl.parse(MxCamt02000103 .class, xml, _classes));
+ return ((MxCamt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000104.java
index e60db918d..06bbdc285 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02000104 parse(String xml) {
- return ((MxCamt02000104) MxReadImpl.parse(MxCamt02000104 .class, xml, _classes));
+ return ((MxCamt02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100101.java
index cf872e537..a1709c333 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100101 parse(String xml) {
- return ((MxCamt02100101) MxReadImpl.parse(MxCamt02100101 .class, xml, _classes));
+ return ((MxCamt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100102.java
index fae01f345..7b3dc8d8f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100102 parse(String xml) {
- return ((MxCamt02100102) MxReadImpl.parse(MxCamt02100102 .class, xml, _classes));
+ return ((MxCamt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100103.java
index 688c7400e..eb463f3f2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100103 parse(String xml) {
- return ((MxCamt02100103) MxReadImpl.parse(MxCamt02100103 .class, xml, _classes));
+ return ((MxCamt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100104.java
index 8f5844134..a64895635 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100104 parse(String xml) {
- return ((MxCamt02100104) MxReadImpl.parse(MxCamt02100104 .class, xml, _classes));
+ return ((MxCamt02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100105.java
index 882bac151..2fcec5d37 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100105 parse(String xml) {
- return ((MxCamt02100105) MxReadImpl.parse(MxCamt02100105 .class, xml, _classes));
+ return ((MxCamt02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100106.java
index 8da919f7b..d9cec3d80 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02100106 parse(String xml) {
- return ((MxCamt02100106) MxReadImpl.parse(MxCamt02100106 .class, xml, _classes));
+ return ((MxCamt02100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300102.java
index 0b65a6265..2ac9ea2ed 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300102 parse(String xml) {
- return ((MxCamt02300102) MxReadImpl.parse(MxCamt02300102 .class, xml, _classes));
+ return ((MxCamt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300103.java
index edf258356..2d7ca9e12 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300103 parse(String xml) {
- return ((MxCamt02300103) MxReadImpl.parse(MxCamt02300103 .class, xml, _classes));
+ return ((MxCamt02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300104.java
index de139716c..91b122409 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300104 parse(String xml) {
- return ((MxCamt02300104) MxReadImpl.parse(MxCamt02300104 .class, xml, _classes));
+ return ((MxCamt02300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300105.java
index 7b50f3e5a..410765d87 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300105 parse(String xml) {
- return ((MxCamt02300105) MxReadImpl.parse(MxCamt02300105 .class, xml, _classes));
+ return ((MxCamt02300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300106.java
index 28251f7d1..46c86f828 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300106 parse(String xml) {
- return ((MxCamt02300106) MxReadImpl.parse(MxCamt02300106 .class, xml, _classes));
+ return ((MxCamt02300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300107.java
index 5840afc02..9b15bcc5b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02300107 parse(String xml) {
- return ((MxCamt02300107) MxReadImpl.parse(MxCamt02300107 .class, xml, _classes));
+ return ((MxCamt02300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400102.java
index 2e1f7e9e9..4277b27a5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400102 parse(String xml) {
- return ((MxCamt02400102) MxReadImpl.parse(MxCamt02400102 .class, xml, _classes));
+ return ((MxCamt02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400103.java
index 78e9b9d53..bf197ea7c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400103 parse(String xml) {
- return ((MxCamt02400103) MxReadImpl.parse(MxCamt02400103 .class, xml, _classes));
+ return ((MxCamt02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400104.java
index 5e6290041..64af8b1c3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400104 parse(String xml) {
- return ((MxCamt02400104) MxReadImpl.parse(MxCamt02400104 .class, xml, _classes));
+ return ((MxCamt02400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400105.java
index 3fa041d35..4eb578204 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400105 parse(String xml) {
- return ((MxCamt02400105) MxReadImpl.parse(MxCamt02400105 .class, xml, _classes));
+ return ((MxCamt02400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400106.java
index 44d450558..80ef3f1f3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400106 parse(String xml) {
- return ((MxCamt02400106) MxReadImpl.parse(MxCamt02400106 .class, xml, _classes));
+ return ((MxCamt02400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400107.java
index 5f109ec38..e378f0ce6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02400107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02400107 parse(String xml) {
- return ((MxCamt02400107) MxReadImpl.parse(MxCamt02400107 .class, xml, _classes));
+ return ((MxCamt02400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02400107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500101.java
index 529ab9d32..f2ae82d34 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02500101 parse(String xml) {
- return ((MxCamt02500101) MxReadImpl.parse(MxCamt02500101 .class, xml, _classes));
+ return ((MxCamt02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500102.java
index 402beba6f..6fcd0db1b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02500102 parse(String xml) {
- return ((MxCamt02500102) MxReadImpl.parse(MxCamt02500102 .class, xml, _classes));
+ return ((MxCamt02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500103.java
index 26a7db8a8..4329a96f3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02500103 parse(String xml) {
- return ((MxCamt02500103) MxReadImpl.parse(MxCamt02500103 .class, xml, _classes));
+ return ((MxCamt02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500104.java
index 5d89464d0..0a7ce6a0b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02500104 parse(String xml) {
- return ((MxCamt02500104) MxReadImpl.parse(MxCamt02500104 .class, xml, _classes));
+ return ((MxCamt02500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500105.java
index 41c432462..e0abc2603 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02500105 parse(String xml) {
- return ((MxCamt02500105) MxReadImpl.parse(MxCamt02500105 .class, xml, _classes));
+ return ((MxCamt02500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600101.java
index 045f9f495..9b82ab3af 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600101 parse(String xml) {
- return ((MxCamt02600101) MxReadImpl.parse(MxCamt02600101 .class, xml, _classes));
+ return ((MxCamt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600102.java
index 258705637..ce17ce17b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600102 parse(String xml) {
- return ((MxCamt02600102) MxReadImpl.parse(MxCamt02600102 .class, xml, _classes));
+ return ((MxCamt02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600103.java
index b7d5f84b5..50b2f0f9e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600103 parse(String xml) {
- return ((MxCamt02600103) MxReadImpl.parse(MxCamt02600103 .class, xml, _classes));
+ return ((MxCamt02600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600104.java
index 2c9df463c..a7bc57a6f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600104 parse(String xml) {
- return ((MxCamt02600104) MxReadImpl.parse(MxCamt02600104 .class, xml, _classes));
+ return ((MxCamt02600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600105.java
index 31aca25ef..747992a3f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600105 parse(String xml) {
- return ((MxCamt02600105) MxReadImpl.parse(MxCamt02600105 .class, xml, _classes));
+ return ((MxCamt02600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600106.java
index 1e73ce02d..1829b0351 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600106 parse(String xml) {
- return ((MxCamt02600106) MxReadImpl.parse(MxCamt02600106 .class, xml, _classes));
+ return ((MxCamt02600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600107.java
index ed8c2cf71..9140bacc9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600107 parse(String xml) {
- return ((MxCamt02600107) MxReadImpl.parse(MxCamt02600107 .class, xml, _classes));
+ return ((MxCamt02600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600108.java
index 400ee3839..0f8bc2af8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600108 parse(String xml) {
- return ((MxCamt02600108) MxReadImpl.parse(MxCamt02600108 .class, xml, _classes));
+ return ((MxCamt02600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600109.java
index 2bb7d7f93..c5de39da1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02600109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02600109 parse(String xml) {
- return ((MxCamt02600109) MxReadImpl.parse(MxCamt02600109 .class, xml, _classes));
+ return ((MxCamt02600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02600109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700101.java
index 814c33042..f88ad5120 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700101 parse(String xml) {
- return ((MxCamt02700101) MxReadImpl.parse(MxCamt02700101 .class, xml, _classes));
+ return ((MxCamt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700102.java
index f62b988a5..78589a172 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700102 parse(String xml) {
- return ((MxCamt02700102) MxReadImpl.parse(MxCamt02700102 .class, xml, _classes));
+ return ((MxCamt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700103.java
index 1b85230a5..04199d7f5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700103 parse(String xml) {
- return ((MxCamt02700103) MxReadImpl.parse(MxCamt02700103 .class, xml, _classes));
+ return ((MxCamt02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700104.java
index 5ad88dbe0..608736de1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700104 parse(String xml) {
- return ((MxCamt02700104) MxReadImpl.parse(MxCamt02700104 .class, xml, _classes));
+ return ((MxCamt02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700105.java
index 1ace93e95..54f243e94 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700105 parse(String xml) {
- return ((MxCamt02700105) MxReadImpl.parse(MxCamt02700105 .class, xml, _classes));
+ return ((MxCamt02700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700106.java
index 2dd7f9f7f..693e0c990 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700106 parse(String xml) {
- return ((MxCamt02700106) MxReadImpl.parse(MxCamt02700106 .class, xml, _classes));
+ return ((MxCamt02700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700107.java
index 6e35fbfa8..3e3f0b245 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700107 parse(String xml) {
- return ((MxCamt02700107) MxReadImpl.parse(MxCamt02700107 .class, xml, _classes));
+ return ((MxCamt02700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700108.java
index 92d7866b9..7d55449a9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700108 parse(String xml) {
- return ((MxCamt02700108) MxReadImpl.parse(MxCamt02700108 .class, xml, _classes));
+ return ((MxCamt02700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700109.java
index 19126e865..bc9230739 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02700109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02700109 parse(String xml) {
- return ((MxCamt02700109) MxReadImpl.parse(MxCamt02700109 .class, xml, _classes));
+ return ((MxCamt02700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02700109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800101.java
index 59cafdfc8..2d09c4b91 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800101 parse(String xml) {
- return ((MxCamt02800101) MxReadImpl.parse(MxCamt02800101 .class, xml, _classes));
+ return ((MxCamt02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800102.java
index 9d91acd1e..6ed73d0f1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800102 parse(String xml) {
- return ((MxCamt02800102) MxReadImpl.parse(MxCamt02800102 .class, xml, _classes));
+ return ((MxCamt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800103.java
index cea727452..1145e85f6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800103 parse(String xml) {
- return ((MxCamt02800103) MxReadImpl.parse(MxCamt02800103 .class, xml, _classes));
+ return ((MxCamt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800104.java
index 7a5c8dd32..927f59377 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800104 parse(String xml) {
- return ((MxCamt02800104) MxReadImpl.parse(MxCamt02800104 .class, xml, _classes));
+ return ((MxCamt02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800105.java
index 442b79656..5dca9be97 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800105 parse(String xml) {
- return ((MxCamt02800105) MxReadImpl.parse(MxCamt02800105 .class, xml, _classes));
+ return ((MxCamt02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800106.java
index dff1c65d3..7fc5ea5e8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800106 parse(String xml) {
- return ((MxCamt02800106) MxReadImpl.parse(MxCamt02800106 .class, xml, _classes));
+ return ((MxCamt02800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800107.java
index f572ed29b..e9932ae00 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800107 parse(String xml) {
- return ((MxCamt02800107) MxReadImpl.parse(MxCamt02800107 .class, xml, _classes));
+ return ((MxCamt02800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800108.java
index a9312f8d0..8d76312a6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800108 parse(String xml) {
- return ((MxCamt02800108) MxReadImpl.parse(MxCamt02800108 .class, xml, _classes));
+ return ((MxCamt02800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800109.java
index 533446080..df1ad5989 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800109 parse(String xml) {
- return ((MxCamt02800109) MxReadImpl.parse(MxCamt02800109 .class, xml, _classes));
+ return ((MxCamt02800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800110.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800110.java
index bbfba7938..c25449aae 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800110.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800110 parse(String xml) {
- return ((MxCamt02800110) MxReadImpl.parse(MxCamt02800110 .class, xml, _classes));
+ return ((MxCamt02800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800111.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800111.java
index aa86bf701..b2e0b9afb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800111.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02800111.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02800111 parse(String xml) {
- return ((MxCamt02800111) MxReadImpl.parse(MxCamt02800111 .class, xml, _classes));
+ return ((MxCamt02800111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02800111 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02800111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02800111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900101.java
index 64b9e0900..70aeafd8e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900101 parse(String xml) {
- return ((MxCamt02900101) MxReadImpl.parse(MxCamt02900101 .class, xml, _classes));
+ return ((MxCamt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900102.java
index c01ea302d..eaa2cfb8e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900102 parse(String xml) {
- return ((MxCamt02900102) MxReadImpl.parse(MxCamt02900102 .class, xml, _classes));
+ return ((MxCamt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900103.java
index 0f1228398..ffaf21e7b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900103 parse(String xml) {
- return ((MxCamt02900103) MxReadImpl.parse(MxCamt02900103 .class, xml, _classes));
+ return ((MxCamt02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900104.java
index e6ee3c5d7..0825a8266 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900104 parse(String xml) {
- return ((MxCamt02900104) MxReadImpl.parse(MxCamt02900104 .class, xml, _classes));
+ return ((MxCamt02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900105.java
index 6a6a68959..b6459eeee 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900105 parse(String xml) {
- return ((MxCamt02900105) MxReadImpl.parse(MxCamt02900105 .class, xml, _classes));
+ return ((MxCamt02900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900106.java
index 504c68db3..22dac2932 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900106 parse(String xml) {
- return ((MxCamt02900106) MxReadImpl.parse(MxCamt02900106 .class, xml, _classes));
+ return ((MxCamt02900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900107.java
index f8bbe8f68..57fbb769d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900107 parse(String xml) {
- return ((MxCamt02900107) MxReadImpl.parse(MxCamt02900107 .class, xml, _classes));
+ return ((MxCamt02900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900108.java
index df39cd789..4e8bd9322 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900108 parse(String xml) {
- return ((MxCamt02900108) MxReadImpl.parse(MxCamt02900108 .class, xml, _classes));
+ return ((MxCamt02900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900109.java
index ac0ed910e..7cda36371 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900109 parse(String xml) {
- return ((MxCamt02900109) MxReadImpl.parse(MxCamt02900109 .class, xml, _classes));
+ return ((MxCamt02900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900110.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900110.java
index 56fb47b1e..bae281301 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900110.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900110 parse(String xml) {
- return ((MxCamt02900110) MxReadImpl.parse(MxCamt02900110 .class, xml, _classes));
+ return ((MxCamt02900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900111.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900111.java
index 26edbbfc6..e0f5f3f49 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900111.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt02900111.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt02900111 parse(String xml) {
- return ((MxCamt02900111) MxReadImpl.parse(MxCamt02900111 .class, xml, _classes));
+ return ((MxCamt02900111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt02900111 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt02900111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt02900111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000101.java
index 2180cbb73..d7699acc9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03000101 parse(String xml) {
- return ((MxCamt03000101) MxReadImpl.parse(MxCamt03000101 .class, xml, _classes));
+ return ((MxCamt03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000102.java
index 7ee8e5d67..89caf8852 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03000102 parse(String xml) {
- return ((MxCamt03000102) MxReadImpl.parse(MxCamt03000102 .class, xml, _classes));
+ return ((MxCamt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000103.java
index ea426868d..a9b33abdb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03000103 parse(String xml) {
- return ((MxCamt03000103) MxReadImpl.parse(MxCamt03000103 .class, xml, _classes));
+ return ((MxCamt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000104.java
index 7b6be7de2..fa3208af6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03000104 parse(String xml) {
- return ((MxCamt03000104) MxReadImpl.parse(MxCamt03000104 .class, xml, _classes));
+ return ((MxCamt03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000105.java
index 0e6cc503c..8fcf60af1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03000105 parse(String xml) {
- return ((MxCamt03000105) MxReadImpl.parse(MxCamt03000105 .class, xml, _classes));
+ return ((MxCamt03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100101.java
index 027540dfa..27ea6640c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100101 parse(String xml) {
- return ((MxCamt03100101) MxReadImpl.parse(MxCamt03100101 .class, xml, _classes));
+ return ((MxCamt03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100102.java
index f5d98dd47..d48dde484 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100102 parse(String xml) {
- return ((MxCamt03100102) MxReadImpl.parse(MxCamt03100102 .class, xml, _classes));
+ return ((MxCamt03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100103.java
index f5bf1c776..8d802db34 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100103 parse(String xml) {
- return ((MxCamt03100103) MxReadImpl.parse(MxCamt03100103 .class, xml, _classes));
+ return ((MxCamt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100104.java
index c0ba18b8f..2b43ce29d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100104 parse(String xml) {
- return ((MxCamt03100104) MxReadImpl.parse(MxCamt03100104 .class, xml, _classes));
+ return ((MxCamt03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100105.java
index e9686ac94..8fd2168f0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100105 parse(String xml) {
- return ((MxCamt03100105) MxReadImpl.parse(MxCamt03100105 .class, xml, _classes));
+ return ((MxCamt03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100106.java
index d6f41731a..0dfff4eef 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03100106 parse(String xml) {
- return ((MxCamt03100106) MxReadImpl.parse(MxCamt03100106 .class, xml, _classes));
+ return ((MxCamt03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200101.java
index f98cbe4c4..d2bb40e94 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03200101 parse(String xml) {
- return ((MxCamt03200101) MxReadImpl.parse(MxCamt03200101 .class, xml, _classes));
+ return ((MxCamt03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200102.java
index d2a1d8879..d0dabdaaa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03200102 parse(String xml) {
- return ((MxCamt03200102) MxReadImpl.parse(MxCamt03200102 .class, xml, _classes));
+ return ((MxCamt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200103.java
index 0e2db1a57..162a30409 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03200103 parse(String xml) {
- return ((MxCamt03200103) MxReadImpl.parse(MxCamt03200103 .class, xml, _classes));
+ return ((MxCamt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200104.java
index fa8643a17..badf7fbd8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03200104 parse(String xml) {
- return ((MxCamt03200104) MxReadImpl.parse(MxCamt03200104 .class, xml, _classes));
+ return ((MxCamt03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300101.java
index b5aed030e..ce221a0bc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300101 parse(String xml) {
- return ((MxCamt03300101) MxReadImpl.parse(MxCamt03300101 .class, xml, _classes));
+ return ((MxCamt03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300102.java
index 42b89a4cd..acc129ff5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300102 parse(String xml) {
- return ((MxCamt03300102) MxReadImpl.parse(MxCamt03300102 .class, xml, _classes));
+ return ((MxCamt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300103.java
index 28fd8de48..eb044d081 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300103 parse(String xml) {
- return ((MxCamt03300103) MxReadImpl.parse(MxCamt03300103 .class, xml, _classes));
+ return ((MxCamt03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300104.java
index 0faf705ad..2f24c1205 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300104 parse(String xml) {
- return ((MxCamt03300104) MxReadImpl.parse(MxCamt03300104 .class, xml, _classes));
+ return ((MxCamt03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300105.java
index 41bcac409..de7a3eddb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300105 parse(String xml) {
- return ((MxCamt03300105) MxReadImpl.parse(MxCamt03300105 .class, xml, _classes));
+ return ((MxCamt03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300106.java
index 66e41143d..36b14d5ad 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03300106 parse(String xml) {
- return ((MxCamt03300106) MxReadImpl.parse(MxCamt03300106 .class, xml, _classes));
+ return ((MxCamt03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400101.java
index ca44894cd..ccb359ad7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400101 parse(String xml) {
- return ((MxCamt03400101) MxReadImpl.parse(MxCamt03400101 .class, xml, _classes));
+ return ((MxCamt03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400102.java
index 64a3d1120..970fbc3d9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400102 parse(String xml) {
- return ((MxCamt03400102) MxReadImpl.parse(MxCamt03400102 .class, xml, _classes));
+ return ((MxCamt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400103.java
index 5eb62a972..b6d408010 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400103 parse(String xml) {
- return ((MxCamt03400103) MxReadImpl.parse(MxCamt03400103 .class, xml, _classes));
+ return ((MxCamt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400104.java
index 8a3da7fa3..efdb750c0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400104 parse(String xml) {
- return ((MxCamt03400104) MxReadImpl.parse(MxCamt03400104 .class, xml, _classes));
+ return ((MxCamt03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400105.java
index 734f1a010..97e7eceff 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400105 parse(String xml) {
- return ((MxCamt03400105) MxReadImpl.parse(MxCamt03400105 .class, xml, _classes));
+ return ((MxCamt03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400106.java
index 21d7ccfaf..4712ceb13 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03400106 parse(String xml) {
- return ((MxCamt03400106) MxReadImpl.parse(MxCamt03400106 .class, xml, _classes));
+ return ((MxCamt03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500101.java
index 3e6088c4c..4d07d1d7f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03500101 parse(String xml) {
- return ((MxCamt03500101) MxReadImpl.parse(MxCamt03500101 .class, xml, _classes));
+ return ((MxCamt03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500102.java
index 2a2084a6c..8a477d57d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03500102 parse(String xml) {
- return ((MxCamt03500102) MxReadImpl.parse(MxCamt03500102 .class, xml, _classes));
+ return ((MxCamt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500103.java
index f852b9c7c..a563f0778 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03500103 parse(String xml) {
- return ((MxCamt03500103) MxReadImpl.parse(MxCamt03500103 .class, xml, _classes));
+ return ((MxCamt03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500104.java
index 06b114c35..3bb0df54d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03500104 parse(String xml) {
- return ((MxCamt03500104) MxReadImpl.parse(MxCamt03500104 .class, xml, _classes));
+ return ((MxCamt03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500105.java
index df261ed82..b7c61108c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03500105 parse(String xml) {
- return ((MxCamt03500105) MxReadImpl.parse(MxCamt03500105 .class, xml, _classes));
+ return ((MxCamt03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600101.java
index 7b098d517..6fa665aff 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03600101 parse(String xml) {
- return ((MxCamt03600101) MxReadImpl.parse(MxCamt03600101 .class, xml, _classes));
+ return ((MxCamt03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600102.java
index 88a04a2d3..2d6b4474e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03600102 parse(String xml) {
- return ((MxCamt03600102) MxReadImpl.parse(MxCamt03600102 .class, xml, _classes));
+ return ((MxCamt03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600103.java
index 1283a70b4..8bd8891e7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03600103 parse(String xml) {
- return ((MxCamt03600103) MxReadImpl.parse(MxCamt03600103 .class, xml, _classes));
+ return ((MxCamt03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600104.java
index d426f0c90..8f96ea34b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03600104 parse(String xml) {
- return ((MxCamt03600104) MxReadImpl.parse(MxCamt03600104 .class, xml, _classes));
+ return ((MxCamt03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600105.java
index 7e17c4a9e..79171b21b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03600105 parse(String xml) {
- return ((MxCamt03600105) MxReadImpl.parse(MxCamt03600105 .class, xml, _classes));
+ return ((MxCamt03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700101.java
index 08b6e9bb9..ca67151ed 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700101 parse(String xml) {
- return ((MxCamt03700101) MxReadImpl.parse(MxCamt03700101 .class, xml, _classes));
+ return ((MxCamt03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700102.java
index fd2e465b0..2af238c0c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700102 parse(String xml) {
- return ((MxCamt03700102) MxReadImpl.parse(MxCamt03700102 .class, xml, _classes));
+ return ((MxCamt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700103.java
index 25f61ec6d..4a8a1e299 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700103 parse(String xml) {
- return ((MxCamt03700103) MxReadImpl.parse(MxCamt03700103 .class, xml, _classes));
+ return ((MxCamt03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700104.java
index 5fa7363ca..150cf1df3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700104 parse(String xml) {
- return ((MxCamt03700104) MxReadImpl.parse(MxCamt03700104 .class, xml, _classes));
+ return ((MxCamt03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700105.java
index 428f6015b..52886b7dc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700105 parse(String xml) {
- return ((MxCamt03700105) MxReadImpl.parse(MxCamt03700105 .class, xml, _classes));
+ return ((MxCamt03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700106.java
index 299e7d61d..e300f74bf 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700106 parse(String xml) {
- return ((MxCamt03700106) MxReadImpl.parse(MxCamt03700106 .class, xml, _classes));
+ return ((MxCamt03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700107.java
index d3e1cc8cc..2f6d2c19b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700107 parse(String xml) {
- return ((MxCamt03700107) MxReadImpl.parse(MxCamt03700107 .class, xml, _classes));
+ return ((MxCamt03700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700108.java
index ffc3731b2..682d1b49d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700108 parse(String xml) {
- return ((MxCamt03700108) MxReadImpl.parse(MxCamt03700108 .class, xml, _classes));
+ return ((MxCamt03700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700109.java
index b5864e79e..3c9ee8270 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03700109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03700109 parse(String xml) {
- return ((MxCamt03700109) MxReadImpl.parse(MxCamt03700109 .class, xml, _classes));
+ return ((MxCamt03700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03700109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800101.java
index 6c544bdcc..024bd3dc2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03800101 parse(String xml) {
- return ((MxCamt03800101) MxReadImpl.parse(MxCamt03800101 .class, xml, _classes));
+ return ((MxCamt03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800102.java
index 7d8a60e43..28fd111af 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03800102 parse(String xml) {
- return ((MxCamt03800102) MxReadImpl.parse(MxCamt03800102 .class, xml, _classes));
+ return ((MxCamt03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800103.java
index 5e3b50f21..2353907eb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03800103 parse(String xml) {
- return ((MxCamt03800103) MxReadImpl.parse(MxCamt03800103 .class, xml, _classes));
+ return ((MxCamt03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800104.java
index e6f170d42..ae1650a5b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03800104 parse(String xml) {
- return ((MxCamt03800104) MxReadImpl.parse(MxCamt03800104 .class, xml, _classes));
+ return ((MxCamt03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900101.java
index b528535e6..b14101128 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03900101 parse(String xml) {
- return ((MxCamt03900101) MxReadImpl.parse(MxCamt03900101 .class, xml, _classes));
+ return ((MxCamt03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900102.java
index 9e8fcc0bf..66c5aa655 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03900102 parse(String xml) {
- return ((MxCamt03900102) MxReadImpl.parse(MxCamt03900102 .class, xml, _classes));
+ return ((MxCamt03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900103.java
index 879f17d8b..e77d5272d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03900103 parse(String xml) {
- return ((MxCamt03900103) MxReadImpl.parse(MxCamt03900103 .class, xml, _classes));
+ return ((MxCamt03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900104.java
index e90cbb15f..7b36e1f6b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03900104 parse(String xml) {
- return ((MxCamt03900104) MxReadImpl.parse(MxCamt03900104 .class, xml, _classes));
+ return ((MxCamt03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900105.java
index e294d3195..bc6a47129 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt03900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt03900105 parse(String xml) {
- return ((MxCamt03900105) MxReadImpl.parse(MxCamt03900105 .class, xml, _classes));
+ return ((MxCamt03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt03900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt03900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt03900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000102.java
index 86d040443..a87095b41 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04000102 parse(String xml) {
- return ((MxCamt04000102) MxReadImpl.parse(MxCamt04000102 .class, xml, _classes));
+ return ((MxCamt04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000103.java
index 18ac17a0b..528f66d66 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04000103 parse(String xml) {
- return ((MxCamt04000103) MxReadImpl.parse(MxCamt04000103 .class, xml, _classes));
+ return ((MxCamt04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000104.java
index 59eff2f14..2f1747972 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04000104 parse(String xml) {
- return ((MxCamt04000104) MxReadImpl.parse(MxCamt04000104 .class, xml, _classes));
+ return ((MxCamt04000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100102.java
index 06c9aff37..e768c93da 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04100102 parse(String xml) {
- return ((MxCamt04100102) MxReadImpl.parse(MxCamt04100102 .class, xml, _classes));
+ return ((MxCamt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100103.java
index 1490e7eb2..14628eddf 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04100103 parse(String xml) {
- return ((MxCamt04100103) MxReadImpl.parse(MxCamt04100103 .class, xml, _classes));
+ return ((MxCamt04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100104.java
index c0e2831f8..94aecf4b4 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04100104 parse(String xml) {
- return ((MxCamt04100104) MxReadImpl.parse(MxCamt04100104 .class, xml, _classes));
+ return ((MxCamt04100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200102.java
index 3675f3b77..bf4c99a15 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04200102 parse(String xml) {
- return ((MxCamt04200102) MxReadImpl.parse(MxCamt04200102 .class, xml, _classes));
+ return ((MxCamt04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200103.java
index ba1a48ed6..786b351fc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04200103 parse(String xml) {
- return ((MxCamt04200103) MxReadImpl.parse(MxCamt04200103 .class, xml, _classes));
+ return ((MxCamt04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200104.java
index beaf3c4c5..f3ec5b41b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04200104 parse(String xml) {
- return ((MxCamt04200104) MxReadImpl.parse(MxCamt04200104 .class, xml, _classes));
+ return ((MxCamt04200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300102.java
index 3bb536856..7471714f2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04300102 parse(String xml) {
- return ((MxCamt04300102) MxReadImpl.parse(MxCamt04300102 .class, xml, _classes));
+ return ((MxCamt04300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300103.java
index 8efc60bb6..a5c26dcc1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04300103 parse(String xml) {
- return ((MxCamt04300103) MxReadImpl.parse(MxCamt04300103 .class, xml, _classes));
+ return ((MxCamt04300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300104.java
index 65ce5af39..d4b00dc08 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04300104 parse(String xml) {
- return ((MxCamt04300104) MxReadImpl.parse(MxCamt04300104 .class, xml, _classes));
+ return ((MxCamt04300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400101.java
index ae9b2f67f..7fd490ebf 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04400101 parse(String xml) {
- return ((MxCamt04400101) MxReadImpl.parse(MxCamt04400101 .class, xml, _classes));
+ return ((MxCamt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400102.java
index 0c2a9ae2b..cfaf8d85f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04400102 parse(String xml) {
- return ((MxCamt04400102) MxReadImpl.parse(MxCamt04400102 .class, xml, _classes));
+ return ((MxCamt04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400103.java
index 04db0a471..a63dfe160 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04400103 parse(String xml) {
- return ((MxCamt04400103) MxReadImpl.parse(MxCamt04400103 .class, xml, _classes));
+ return ((MxCamt04400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500101.java
index e3d898f51..71f6fcd4a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04500101 parse(String xml) {
- return ((MxCamt04500101) MxReadImpl.parse(MxCamt04500101 .class, xml, _classes));
+ return ((MxCamt04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500102.java
index 0cde3aa8d..2d8dc81e9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04500102 parse(String xml) {
- return ((MxCamt04500102) MxReadImpl.parse(MxCamt04500102 .class, xml, _classes));
+ return ((MxCamt04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500103.java
index f951c2cf4..e01ad274c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04500103 parse(String xml) {
- return ((MxCamt04500103) MxReadImpl.parse(MxCamt04500103 .class, xml, _classes));
+ return ((MxCamt04500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600101.java
index a78af46a4..9b85a7680 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600101 parse(String xml) {
- return ((MxCamt04600101) MxReadImpl.parse(MxCamt04600101 .class, xml, _classes));
+ return ((MxCamt04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600102.java
index 3c36679ac..51bc21706 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600102 parse(String xml) {
- return ((MxCamt04600102) MxReadImpl.parse(MxCamt04600102 .class, xml, _classes));
+ return ((MxCamt04600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600103.java
index cf687d02d..46238e436 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600103 parse(String xml) {
- return ((MxCamt04600103) MxReadImpl.parse(MxCamt04600103 .class, xml, _classes));
+ return ((MxCamt04600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600104.java
index 7e81cb465..8bdd486fa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600104 parse(String xml) {
- return ((MxCamt04600104) MxReadImpl.parse(MxCamt04600104 .class, xml, _classes));
+ return ((MxCamt04600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600105.java
index be201290e..f83ccf1fc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600105 parse(String xml) {
- return ((MxCamt04600105) MxReadImpl.parse(MxCamt04600105 .class, xml, _classes));
+ return ((MxCamt04600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600106.java
index 8577e3f76..495513c78 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04600106 parse(String xml) {
- return ((MxCamt04600106) MxReadImpl.parse(MxCamt04600106 .class, xml, _classes));
+ return ((MxCamt04600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700101.java
index 701b285b1..be04e5936 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700101 parse(String xml) {
- return ((MxCamt04700101) MxReadImpl.parse(MxCamt04700101 .class, xml, _classes));
+ return ((MxCamt04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700102.java
index 9bd5e2a21..53352eb2e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700102 parse(String xml) {
- return ((MxCamt04700102) MxReadImpl.parse(MxCamt04700102 .class, xml, _classes));
+ return ((MxCamt04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700103.java
index ba11acfee..c0b304d77 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700103 parse(String xml) {
- return ((MxCamt04700103) MxReadImpl.parse(MxCamt04700103 .class, xml, _classes));
+ return ((MxCamt04700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700104.java
index 46c6e1aa5..a0df3c528 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700104 parse(String xml) {
- return ((MxCamt04700104) MxReadImpl.parse(MxCamt04700104 .class, xml, _classes));
+ return ((MxCamt04700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700105.java
index 5b233e535..4bed75b22 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700105 parse(String xml) {
- return ((MxCamt04700105) MxReadImpl.parse(MxCamt04700105 .class, xml, _classes));
+ return ((MxCamt04700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700106.java
index 92865468c..d1206d2cf 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700106 parse(String xml) {
- return ((MxCamt04700106) MxReadImpl.parse(MxCamt04700106 .class, xml, _classes));
+ return ((MxCamt04700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700107.java
index de8cd8a5d..80fb9dcee 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04700107 parse(String xml) {
- return ((MxCamt04700107) MxReadImpl.parse(MxCamt04700107 .class, xml, _classes));
+ return ((MxCamt04700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800101.java
index 2903246e9..a747d94c0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800101 parse(String xml) {
- return ((MxCamt04800101) MxReadImpl.parse(MxCamt04800101 .class, xml, _classes));
+ return ((MxCamt04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800102.java
index a61bf8522..b9cd1be19 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800102 parse(String xml) {
- return ((MxCamt04800102) MxReadImpl.parse(MxCamt04800102 .class, xml, _classes));
+ return ((MxCamt04800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800103.java
index 3b57f669c..11851a7ee 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800103 parse(String xml) {
- return ((MxCamt04800103) MxReadImpl.parse(MxCamt04800103 .class, xml, _classes));
+ return ((MxCamt04800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800104.java
index 4ee3b8e4c..2f13b2559 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800104 parse(String xml) {
- return ((MxCamt04800104) MxReadImpl.parse(MxCamt04800104 .class, xml, _classes));
+ return ((MxCamt04800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800105.java
index 2f59225a2..3a69bce19 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800105 parse(String xml) {
- return ((MxCamt04800105) MxReadImpl.parse(MxCamt04800105 .class, xml, _classes));
+ return ((MxCamt04800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800106.java
index 0ee685f31..f828e2f05 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04800106 parse(String xml) {
- return ((MxCamt04800106) MxReadImpl.parse(MxCamt04800106 .class, xml, _classes));
+ return ((MxCamt04800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900101.java
index 7fec5cff0..11a4cbce8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900101 parse(String xml) {
- return ((MxCamt04900101) MxReadImpl.parse(MxCamt04900101 .class, xml, _classes));
+ return ((MxCamt04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900102.java
index b74807dc8..8118991e0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900102 parse(String xml) {
- return ((MxCamt04900102) MxReadImpl.parse(MxCamt04900102 .class, xml, _classes));
+ return ((MxCamt04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900103.java
index abaf0b32d..918ed6d97 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900103 parse(String xml) {
- return ((MxCamt04900103) MxReadImpl.parse(MxCamt04900103 .class, xml, _classes));
+ return ((MxCamt04900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900104.java
index 56387f2b6..dcc6ff2f3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900104 parse(String xml) {
- return ((MxCamt04900104) MxReadImpl.parse(MxCamt04900104 .class, xml, _classes));
+ return ((MxCamt04900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900105.java
index fa57adc28..12e8deefa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900105 parse(String xml) {
- return ((MxCamt04900105) MxReadImpl.parse(MxCamt04900105 .class, xml, _classes));
+ return ((MxCamt04900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900106.java
index 23fd9632a..01b0496f5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt04900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt04900106 parse(String xml) {
- return ((MxCamt04900106) MxReadImpl.parse(MxCamt04900106 .class, xml, _classes));
+ return ((MxCamt04900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt04900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt04900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt04900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000101.java
index ef256ab6d..0c60334ae 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000101 parse(String xml) {
- return ((MxCamt05000101) MxReadImpl.parse(MxCamt05000101 .class, xml, _classes));
+ return ((MxCamt05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000102.java
index 0e0ebc05c..25983c13d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000102 parse(String xml) {
- return ((MxCamt05000102) MxReadImpl.parse(MxCamt05000102 .class, xml, _classes));
+ return ((MxCamt05000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000103.java
index 11171d3f9..3d568d342 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000103 parse(String xml) {
- return ((MxCamt05000103) MxReadImpl.parse(MxCamt05000103 .class, xml, _classes));
+ return ((MxCamt05000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000104.java
index b541cc255..a0627a775 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000104 parse(String xml) {
- return ((MxCamt05000104) MxReadImpl.parse(MxCamt05000104 .class, xml, _classes));
+ return ((MxCamt05000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000105.java
index 06d6da2ba..ce64471cd 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000105 parse(String xml) {
- return ((MxCamt05000105) MxReadImpl.parse(MxCamt05000105 .class, xml, _classes));
+ return ((MxCamt05000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000106.java
index 6ea77d373..c437c573c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05000106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05000106 parse(String xml) {
- return ((MxCamt05000106) MxReadImpl.parse(MxCamt05000106 .class, xml, _classes));
+ return ((MxCamt05000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05000106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100101.java
index d525548a6..dd4f8cd83 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100101 parse(String xml) {
- return ((MxCamt05100101) MxReadImpl.parse(MxCamt05100101 .class, xml, _classes));
+ return ((MxCamt05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100102.java
index 7869f9cc8..1faa00b4f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100102 parse(String xml) {
- return ((MxCamt05100102) MxReadImpl.parse(MxCamt05100102 .class, xml, _classes));
+ return ((MxCamt05100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100103.java
index 898456e84..c12c33646 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100103 parse(String xml) {
- return ((MxCamt05100103) MxReadImpl.parse(MxCamt05100103 .class, xml, _classes));
+ return ((MxCamt05100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100104.java
index 4f024d5c3..46ff136ad 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100104 parse(String xml) {
- return ((MxCamt05100104) MxReadImpl.parse(MxCamt05100104 .class, xml, _classes));
+ return ((MxCamt05100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100105.java
index e2d54d054..0a7039aa0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100105 parse(String xml) {
- return ((MxCamt05100105) MxReadImpl.parse(MxCamt05100105 .class, xml, _classes));
+ return ((MxCamt05100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100106.java
index 86404e37d..623f671a4 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05100106 parse(String xml) {
- return ((MxCamt05100106) MxReadImpl.parse(MxCamt05100106 .class, xml, _classes));
+ return ((MxCamt05100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200101.java
index b5a7b6112..7baf7b465 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200101 parse(String xml) {
- return ((MxCamt05200101) MxReadImpl.parse(MxCamt05200101 .class, xml, _classes));
+ return ((MxCamt05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200102.java
index 27a3f2bf3..2de59c021 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200102 parse(String xml) {
- return ((MxCamt05200102) MxReadImpl.parse(MxCamt05200102 .class, xml, _classes));
+ return ((MxCamt05200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200103.java
index f6f1589a8..d2cc5e907 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200103 parse(String xml) {
- return ((MxCamt05200103) MxReadImpl.parse(MxCamt05200103 .class, xml, _classes));
+ return ((MxCamt05200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200104.java
index c92334e7e..ee54e85d1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200104 parse(String xml) {
- return ((MxCamt05200104) MxReadImpl.parse(MxCamt05200104 .class, xml, _classes));
+ return ((MxCamt05200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200105.java
index 692a2dbf3..7e05e2da3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200105 parse(String xml) {
- return ((MxCamt05200105) MxReadImpl.parse(MxCamt05200105 .class, xml, _classes));
+ return ((MxCamt05200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200106.java
index 4537a1f02..8e077c82d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200106 parse(String xml) {
- return ((MxCamt05200106) MxReadImpl.parse(MxCamt05200106 .class, xml, _classes));
+ return ((MxCamt05200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200107.java
index 6803d302a..2ae74646d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200107 parse(String xml) {
- return ((MxCamt05200107) MxReadImpl.parse(MxCamt05200107 .class, xml, _classes));
+ return ((MxCamt05200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200108.java
index 22f95348c..8841a8624 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200108 parse(String xml) {
- return ((MxCamt05200108) MxReadImpl.parse(MxCamt05200108 .class, xml, _classes));
+ return ((MxCamt05200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200109.java
index 2fb044e0a..b837d22e4 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05200109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05200109 parse(String xml) {
- return ((MxCamt05200109) MxReadImpl.parse(MxCamt05200109 .class, xml, _classes));
+ return ((MxCamt05200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05200109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300101.java
index d91e4b1bb..8c25c579a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300101 parse(String xml) {
- return ((MxCamt05300101) MxReadImpl.parse(MxCamt05300101 .class, xml, _classes));
+ return ((MxCamt05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300102.java
index b712b2ada..e9c59884e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300102 parse(String xml) {
- return ((MxCamt05300102) MxReadImpl.parse(MxCamt05300102 .class, xml, _classes));
+ return ((MxCamt05300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300103.java
index a35bde8a4..a0b1ba380 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300103 parse(String xml) {
- return ((MxCamt05300103) MxReadImpl.parse(MxCamt05300103 .class, xml, _classes));
+ return ((MxCamt05300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300104.java
index 8a7debce3..d53f7595f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300104 parse(String xml) {
- return ((MxCamt05300104) MxReadImpl.parse(MxCamt05300104 .class, xml, _classes));
+ return ((MxCamt05300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300105.java
index 545374c2e..6a06a07c9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300105 parse(String xml) {
- return ((MxCamt05300105) MxReadImpl.parse(MxCamt05300105 .class, xml, _classes));
+ return ((MxCamt05300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300106.java
index b54ee5fa3..2cfb7691a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300106 parse(String xml) {
- return ((MxCamt05300106) MxReadImpl.parse(MxCamt05300106 .class, xml, _classes));
+ return ((MxCamt05300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300107.java
index 054af6d94..8f2f1cecb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300107 parse(String xml) {
- return ((MxCamt05300107) MxReadImpl.parse(MxCamt05300107 .class, xml, _classes));
+ return ((MxCamt05300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300108.java
index c794797c6..2f741dea2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300108 parse(String xml) {
- return ((MxCamt05300108) MxReadImpl.parse(MxCamt05300108 .class, xml, _classes));
+ return ((MxCamt05300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300109.java
index c19b99b0c..d3566abf2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05300109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05300109 parse(String xml) {
- return ((MxCamt05300109) MxReadImpl.parse(MxCamt05300109 .class, xml, _classes));
+ return ((MxCamt05300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05300109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400101.java
index 38e0333f0..3f05ddc52 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400101 parse(String xml) {
- return ((MxCamt05400101) MxReadImpl.parse(MxCamt05400101 .class, xml, _classes));
+ return ((MxCamt05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400102.java
index 046ef68fc..3b3bbcdea 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400102 parse(String xml) {
- return ((MxCamt05400102) MxReadImpl.parse(MxCamt05400102 .class, xml, _classes));
+ return ((MxCamt05400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400103.java
index fb2187e9c..0c245aaa4 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400103 parse(String xml) {
- return ((MxCamt05400103) MxReadImpl.parse(MxCamt05400103 .class, xml, _classes));
+ return ((MxCamt05400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400104.java
index 62e34b991..cb270704a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400104 parse(String xml) {
- return ((MxCamt05400104) MxReadImpl.parse(MxCamt05400104 .class, xml, _classes));
+ return ((MxCamt05400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400105.java
index 183f2c3ba..84167d87a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400105 parse(String xml) {
- return ((MxCamt05400105) MxReadImpl.parse(MxCamt05400105 .class, xml, _classes));
+ return ((MxCamt05400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400106.java
index 4f373f0ff..8a07bb4f7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400106 parse(String xml) {
- return ((MxCamt05400106) MxReadImpl.parse(MxCamt05400106 .class, xml, _classes));
+ return ((MxCamt05400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400107.java
index f5c81c6d8..8cf49e930 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400107 parse(String xml) {
- return ((MxCamt05400107) MxReadImpl.parse(MxCamt05400107 .class, xml, _classes));
+ return ((MxCamt05400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400108.java
index 93fbeeaa4..8afda0894 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400108 parse(String xml) {
- return ((MxCamt05400108) MxReadImpl.parse(MxCamt05400108 .class, xml, _classes));
+ return ((MxCamt05400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400109.java
index 95b278913..b07387a55 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05400109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05400109 parse(String xml) {
- return ((MxCamt05400109) MxReadImpl.parse(MxCamt05400109 .class, xml, _classes));
+ return ((MxCamt05400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05400109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500101.java
index 11cf01f32..0fafacef6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500101 parse(String xml) {
- return ((MxCamt05500101) MxReadImpl.parse(MxCamt05500101 .class, xml, _classes));
+ return ((MxCamt05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500102.java
index baa6dc673..b4810e688 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500102 parse(String xml) {
- return ((MxCamt05500102) MxReadImpl.parse(MxCamt05500102 .class, xml, _classes));
+ return ((MxCamt05500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500103.java
index d85a63a87..4ff113fa9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500103 parse(String xml) {
- return ((MxCamt05500103) MxReadImpl.parse(MxCamt05500103 .class, xml, _classes));
+ return ((MxCamt05500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500104.java
index 3015b5fc5..e907b0ae6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500104 parse(String xml) {
- return ((MxCamt05500104) MxReadImpl.parse(MxCamt05500104 .class, xml, _classes));
+ return ((MxCamt05500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500105.java
index ed548eae6..edb797785 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500105 parse(String xml) {
- return ((MxCamt05500105) MxReadImpl.parse(MxCamt05500105 .class, xml, _classes));
+ return ((MxCamt05500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500106.java
index 53f3d8503..93914ff6d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500106 parse(String xml) {
- return ((MxCamt05500106) MxReadImpl.parse(MxCamt05500106 .class, xml, _classes));
+ return ((MxCamt05500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500107.java
index 42060d319..52af3cd83 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500107 parse(String xml) {
- return ((MxCamt05500107) MxReadImpl.parse(MxCamt05500107 .class, xml, _classes));
+ return ((MxCamt05500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500108.java
index ef31bfcf2..918b75415 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500108 parse(String xml) {
- return ((MxCamt05500108) MxReadImpl.parse(MxCamt05500108 .class, xml, _classes));
+ return ((MxCamt05500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500109.java
index 6fb6352f1..54d258ee8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500109 parse(String xml) {
- return ((MxCamt05500109) MxReadImpl.parse(MxCamt05500109 .class, xml, _classes));
+ return ((MxCamt05500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500110.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500110.java
index 4bbc513fe..174bdd939 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500110.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05500110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05500110 parse(String xml) {
- return ((MxCamt05500110) MxReadImpl.parse(MxCamt05500110 .class, xml, _classes));
+ return ((MxCamt05500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05500110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05500110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05500110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600101.java
index 70cac1a5c..c8cee6077 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600101 parse(String xml) {
- return ((MxCamt05600101) MxReadImpl.parse(MxCamt05600101 .class, xml, _classes));
+ return ((MxCamt05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600102.java
index 51eb6db0d..81e9fa20d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600102 parse(String xml) {
- return ((MxCamt05600102) MxReadImpl.parse(MxCamt05600102 .class, xml, _classes));
+ return ((MxCamt05600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600103.java
index d7c33163a..41cbceead 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600103 parse(String xml) {
- return ((MxCamt05600103) MxReadImpl.parse(MxCamt05600103 .class, xml, _classes));
+ return ((MxCamt05600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600104.java
index c9caa2dce..4f98779b3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600104 parse(String xml) {
- return ((MxCamt05600104) MxReadImpl.parse(MxCamt05600104 .class, xml, _classes));
+ return ((MxCamt05600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600105.java
index 15203d5d6..0cb7ef5af 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600105 parse(String xml) {
- return ((MxCamt05600105) MxReadImpl.parse(MxCamt05600105 .class, xml, _classes));
+ return ((MxCamt05600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600106.java
index 64d5b3eda..49e5029bc 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600106 parse(String xml) {
- return ((MxCamt05600106) MxReadImpl.parse(MxCamt05600106 .class, xml, _classes));
+ return ((MxCamt05600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600107.java
index a26798e4d..0afbdbdea 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600107 parse(String xml) {
- return ((MxCamt05600107) MxReadImpl.parse(MxCamt05600107 .class, xml, _classes));
+ return ((MxCamt05600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600108.java
index 58aa91ffd..66f75e378 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600108 parse(String xml) {
- return ((MxCamt05600108) MxReadImpl.parse(MxCamt05600108 .class, xml, _classes));
+ return ((MxCamt05600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600109.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600109.java
index 630794a9c..8dff3c950 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600109.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600109 parse(String xml) {
- return ((MxCamt05600109) MxReadImpl.parse(MxCamt05600109 .class, xml, _classes));
+ return ((MxCamt05600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600110.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600110.java
index 0e58291e0..c1039610e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600110.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05600110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05600110 parse(String xml) {
- return ((MxCamt05600110) MxReadImpl.parse(MxCamt05600110 .class, xml, _classes));
+ return ((MxCamt05600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05600110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05600110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05600110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700101.java
index 12b894141..3665a0038 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700101 parse(String xml) {
- return ((MxCamt05700101) MxReadImpl.parse(MxCamt05700101 .class, xml, _classes));
+ return ((MxCamt05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700102.java
index 9cdc0f90e..c2a500f5b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700102 parse(String xml) {
- return ((MxCamt05700102) MxReadImpl.parse(MxCamt05700102 .class, xml, _classes));
+ return ((MxCamt05700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700103.java
index 4ab3e837d..ad852c000 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700103 parse(String xml) {
- return ((MxCamt05700103) MxReadImpl.parse(MxCamt05700103 .class, xml, _classes));
+ return ((MxCamt05700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700104.java
index b9c914b2d..a69598653 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700104 parse(String xml) {
- return ((MxCamt05700104) MxReadImpl.parse(MxCamt05700104 .class, xml, _classes));
+ return ((MxCamt05700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700105.java
index 02c3e00b6..fb5c86591 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700105 parse(String xml) {
- return ((MxCamt05700105) MxReadImpl.parse(MxCamt05700105 .class, xml, _classes));
+ return ((MxCamt05700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700106.java
index 9adf3a6b9..ce311218f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700106 parse(String xml) {
- return ((MxCamt05700106) MxReadImpl.parse(MxCamt05700106 .class, xml, _classes));
+ return ((MxCamt05700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700107.java
index 3bb541f53..25df0d345 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05700107 parse(String xml) {
- return ((MxCamt05700107) MxReadImpl.parse(MxCamt05700107 .class, xml, _classes));
+ return ((MxCamt05700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800101.java
index 82456577b..7243936a9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800101 parse(String xml) {
- return ((MxCamt05800101) MxReadImpl.parse(MxCamt05800101 .class, xml, _classes));
+ return ((MxCamt05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800102.java
index fe91fcdf1..71802f1c3 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800102 parse(String xml) {
- return ((MxCamt05800102) MxReadImpl.parse(MxCamt05800102 .class, xml, _classes));
+ return ((MxCamt05800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800103.java
index 777e40ebb..80d908a27 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800103 parse(String xml) {
- return ((MxCamt05800103) MxReadImpl.parse(MxCamt05800103 .class, xml, _classes));
+ return ((MxCamt05800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800104.java
index 105b87d16..896c2e7f2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800104 parse(String xml) {
- return ((MxCamt05800104) MxReadImpl.parse(MxCamt05800104 .class, xml, _classes));
+ return ((MxCamt05800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800105.java
index e9a651cc7..25f72b968 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800105 parse(String xml) {
- return ((MxCamt05800105) MxReadImpl.parse(MxCamt05800105 .class, xml, _classes));
+ return ((MxCamt05800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800106.java
index 0419c0f14..de8b9a563 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800106 parse(String xml) {
- return ((MxCamt05800106) MxReadImpl.parse(MxCamt05800106 .class, xml, _classes));
+ return ((MxCamt05800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800107.java
index ef97861b7..c08c2dbd1 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05800107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05800107 parse(String xml) {
- return ((MxCamt05800107) MxReadImpl.parse(MxCamt05800107 .class, xml, _classes));
+ return ((MxCamt05800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05800107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900101.java
index 11f34c3ba..c519260fa 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900101 parse(String xml) {
- return ((MxCamt05900101) MxReadImpl.parse(MxCamt05900101 .class, xml, _classes));
+ return ((MxCamt05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900102.java
index a45023cdf..beb215532 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900102 parse(String xml) {
- return ((MxCamt05900102) MxReadImpl.parse(MxCamt05900102 .class, xml, _classes));
+ return ((MxCamt05900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900103.java
index 531405d0a..ff2674e6d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900103 parse(String xml) {
- return ((MxCamt05900103) MxReadImpl.parse(MxCamt05900103 .class, xml, _classes));
+ return ((MxCamt05900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900104.java
index 11226796e..7762a6805 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900104 parse(String xml) {
- return ((MxCamt05900104) MxReadImpl.parse(MxCamt05900104 .class, xml, _classes));
+ return ((MxCamt05900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900105.java
index 783a172bf..c72fa7c02 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900105 parse(String xml) {
- return ((MxCamt05900105) MxReadImpl.parse(MxCamt05900105 .class, xml, _classes));
+ return ((MxCamt05900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900106.java
index 6023a1c87..ee16f75d8 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900106 parse(String xml) {
- return ((MxCamt05900106) MxReadImpl.parse(MxCamt05900106 .class, xml, _classes));
+ return ((MxCamt05900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900107.java
index e9f39419c..4d2433428 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt05900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt05900107 parse(String xml) {
- return ((MxCamt05900107) MxReadImpl.parse(MxCamt05900107 .class, xml, _classes));
+ return ((MxCamt05900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt05900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt05900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt05900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000101.java
index 152da07d2..a92ec1a2b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000101 parse(String xml) {
- return ((MxCamt06000101) MxReadImpl.parse(MxCamt06000101 .class, xml, _classes));
+ return ((MxCamt06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000102.java
index 9ca8110ed..fa7064141 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000102 parse(String xml) {
- return ((MxCamt06000102) MxReadImpl.parse(MxCamt06000102 .class, xml, _classes));
+ return ((MxCamt06000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000103.java
index ed16c8970..0f11d9bba 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000103 parse(String xml) {
- return ((MxCamt06000103) MxReadImpl.parse(MxCamt06000103 .class, xml, _classes));
+ return ((MxCamt06000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000104.java
index 3d01efbfe..f6f7c49ee 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000104 parse(String xml) {
- return ((MxCamt06000104) MxReadImpl.parse(MxCamt06000104 .class, xml, _classes));
+ return ((MxCamt06000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000105.java
index 6cb9a5fa1..2bbdccd4c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000105 parse(String xml) {
- return ((MxCamt06000105) MxReadImpl.parse(MxCamt06000105 .class, xml, _classes));
+ return ((MxCamt06000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000106.java
index 1a466b3b5..ee78ab98f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06000106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06000106 parse(String xml) {
- return ((MxCamt06000106) MxReadImpl.parse(MxCamt06000106 .class, xml, _classes));
+ return ((MxCamt06000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06000106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06000106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06000106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100101.java
index eb6148733..69456ad3d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06100101 parse(String xml) {
- return ((MxCamt06100101) MxReadImpl.parse(MxCamt06100101 .class, xml, _classes));
+ return ((MxCamt06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100102.java
index 6ab42e5eb..bc6c80d6f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06100102 parse(String xml) {
- return ((MxCamt06100102) MxReadImpl.parse(MxCamt06100102 .class, xml, _classes));
+ return ((MxCamt06100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200101.java
index 62e670a79..4ba968a98 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06200101 parse(String xml) {
- return ((MxCamt06200101) MxReadImpl.parse(MxCamt06200101 .class, xml, _classes));
+ return ((MxCamt06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200102.java
index da3c8670d..4ac1d9320 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06200102 parse(String xml) {
- return ((MxCamt06200102) MxReadImpl.parse(MxCamt06200102 .class, xml, _classes));
+ return ((MxCamt06200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200103.java
index e753d575d..63667acff 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06200103 parse(String xml) {
- return ((MxCamt06200103) MxReadImpl.parse(MxCamt06200103 .class, xml, _classes));
+ return ((MxCamt06200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300101.java
index a5fcdc9a5..1d7dae762 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06300101 parse(String xml) {
- return ((MxCamt06300101) MxReadImpl.parse(MxCamt06300101 .class, xml, _classes));
+ return ((MxCamt06300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300102.java
index ebf7e12f4..a50b7551f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06300102 parse(String xml) {
- return ((MxCamt06300102) MxReadImpl.parse(MxCamt06300102 .class, xml, _classes));
+ return ((MxCamt06300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06600101.java
index bd6b8f828..8af092f8c 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06600101 parse(String xml) {
- return ((MxCamt06600101) MxReadImpl.parse(MxCamt06600101 .class, xml, _classes));
+ return ((MxCamt06600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06700101.java
index a3dc07b4f..2613d14e9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06700101 parse(String xml) {
- return ((MxCamt06700101) MxReadImpl.parse(MxCamt06700101 .class, xml, _classes));
+ return ((MxCamt06700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06800101.java
index 08347ff88..59f1bcbbd 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06800101 parse(String xml) {
- return ((MxCamt06800101) MxReadImpl.parse(MxCamt06800101 .class, xml, _classes));
+ return ((MxCamt06800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900101.java
index 1f01c19ef..d9edb37cb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06900101 parse(String xml) {
- return ((MxCamt06900101) MxReadImpl.parse(MxCamt06900101 .class, xml, _classes));
+ return ((MxCamt06900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900102.java
index b28fd5771..fb7249c3f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06900102 parse(String xml) {
- return ((MxCamt06900102) MxReadImpl.parse(MxCamt06900102 .class, xml, _classes));
+ return ((MxCamt06900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900103.java
index f7491ec4d..ed1bf152a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06900103 parse(String xml) {
- return ((MxCamt06900103) MxReadImpl.parse(MxCamt06900103 .class, xml, _classes));
+ return ((MxCamt06900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900104.java
index cd0b66840..743734651 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt06900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt06900104 parse(String xml) {
- return ((MxCamt06900104) MxReadImpl.parse(MxCamt06900104 .class, xml, _classes));
+ return ((MxCamt06900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt06900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt06900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt06900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000101.java
index c412ee55d..cadea87d7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07000101 parse(String xml) {
- return ((MxCamt07000101) MxReadImpl.parse(MxCamt07000101 .class, xml, _classes));
+ return ((MxCamt07000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000102.java
index e338149cd..159a94c31 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07000102 parse(String xml) {
- return ((MxCamt07000102) MxReadImpl.parse(MxCamt07000102 .class, xml, _classes));
+ return ((MxCamt07000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000103.java
index 845a3f031..93b88d18f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07000103 parse(String xml) {
- return ((MxCamt07000103) MxReadImpl.parse(MxCamt07000103 .class, xml, _classes));
+ return ((MxCamt07000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000104.java
index e37a9fa58..ad3aec3d5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07000104 parse(String xml) {
- return ((MxCamt07000104) MxReadImpl.parse(MxCamt07000104 .class, xml, _classes));
+ return ((MxCamt07000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000105.java
index 285fdeb43..7c2ed9694 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07000105 parse(String xml) {
- return ((MxCamt07000105) MxReadImpl.parse(MxCamt07000105 .class, xml, _classes));
+ return ((MxCamt07000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100102.java
index 029eae098..8e566fb2e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07100102 parse(String xml) {
- return ((MxCamt07100102) MxReadImpl.parse(MxCamt07100102 .class, xml, _classes));
+ return ((MxCamt07100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100103.java
index 41bd12731..fa0c2a183 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07100103 parse(String xml) {
- return ((MxCamt07100103) MxReadImpl.parse(MxCamt07100103 .class, xml, _classes));
+ return ((MxCamt07100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100104.java
index aa4b2b89d..3aa01a077 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07100104 parse(String xml) {
- return ((MxCamt07100104) MxReadImpl.parse(MxCamt07100104 .class, xml, _classes));
+ return ((MxCamt07100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07200101.java
index 1c83c34d7..6d1466f20 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07200101 parse(String xml) {
- return ((MxCamt07200101) MxReadImpl.parse(MxCamt07200101 .class, xml, _classes));
+ return ((MxCamt07200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07300101.java
index 831878976..65c87d350 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07300101 parse(String xml) {
- return ((MxCamt07300101) MxReadImpl.parse(MxCamt07300101 .class, xml, _classes));
+ return ((MxCamt07300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07400101.java
index e173b381b..7fac0e5bd 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07400101 parse(String xml) {
- return ((MxCamt07400101) MxReadImpl.parse(MxCamt07400101 .class, xml, _classes));
+ return ((MxCamt07400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07500101.java
index 30938cd47..8a65d0d0f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07500101 parse(String xml) {
- return ((MxCamt07500101) MxReadImpl.parse(MxCamt07500101 .class, xml, _classes));
+ return ((MxCamt07500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07800101.java
index 510b3d6fc..099712af5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07800101 parse(String xml) {
- return ((MxCamt07800101) MxReadImpl.parse(MxCamt07800101 .class, xml, _classes));
+ return ((MxCamt07800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07900101.java
index 845d787fe..4a649c618 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt07900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt07900101 parse(String xml) {
- return ((MxCamt07900101) MxReadImpl.parse(MxCamt07900101 .class, xml, _classes));
+ return ((MxCamt07900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt07900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt07900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt07900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08000101.java
index e06468833..8651efdbf 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08000101 parse(String xml) {
- return ((MxCamt08000101) MxReadImpl.parse(MxCamt08000101 .class, xml, _classes));
+ return ((MxCamt08000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08100101.java
index 42f3ac5dc..71eff9c20 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08100101 parse(String xml) {
- return ((MxCamt08100101) MxReadImpl.parse(MxCamt08100101 .class, xml, _classes));
+ return ((MxCamt08100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08200101.java
index 97f2f7247..49e89ec2e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08200101 parse(String xml) {
- return ((MxCamt08200101) MxReadImpl.parse(MxCamt08200101 .class, xml, _classes));
+ return ((MxCamt08200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08300101.java
index 4a85f078f..63b911e44 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08300101 parse(String xml) {
- return ((MxCamt08300101) MxReadImpl.parse(MxCamt08300101 .class, xml, _classes));
+ return ((MxCamt08300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08400101.java
index ff4154858..efea62c76 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08400101 parse(String xml) {
- return ((MxCamt08400101) MxReadImpl.parse(MxCamt08400101 .class, xml, _classes));
+ return ((MxCamt08400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08500101.java
index 4ef606535..7cd10b699 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08500101 parse(String xml) {
- return ((MxCamt08500101) MxReadImpl.parse(MxCamt08500101 .class, xml, _classes));
+ return ((MxCamt08500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600101.java
index 67793db8b..2229a85c6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08600101 parse(String xml) {
- return ((MxCamt08600101) MxReadImpl.parse(MxCamt08600101 .class, xml, _classes));
+ return ((MxCamt08600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600102.java
index 86ecbcd87..6501d1fb0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08600102 parse(String xml) {
- return ((MxCamt08600102) MxReadImpl.parse(MxCamt08600102 .class, xml, _classes));
+ return ((MxCamt08600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600103.java
index 5de6ae88c..c9d1b10e5 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08600103 parse(String xml) {
- return ((MxCamt08600103) MxReadImpl.parse(MxCamt08600103 .class, xml, _classes));
+ return ((MxCamt08600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600104.java
index c41f462c3..39381588e 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08600104 parse(String xml) {
- return ((MxCamt08600104) MxReadImpl.parse(MxCamt08600104 .class, xml, _classes));
+ return ((MxCamt08600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700101.java
index 891cbb3cc..754d4a814 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700101 parse(String xml) {
- return ((MxCamt08700101) MxReadImpl.parse(MxCamt08700101 .class, xml, _classes));
+ return ((MxCamt08700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700102.java
index e1662eebf..825b627c6 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700102 parse(String xml) {
- return ((MxCamt08700102) MxReadImpl.parse(MxCamt08700102 .class, xml, _classes));
+ return ((MxCamt08700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700103.java
index 633c582a4..cda46a860 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700103 parse(String xml) {
- return ((MxCamt08700103) MxReadImpl.parse(MxCamt08700103 .class, xml, _classes));
+ return ((MxCamt08700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700104.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700104.java
index 20e2266b5..5136d3949 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700104.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700104 parse(String xml) {
- return ((MxCamt08700104) MxReadImpl.parse(MxCamt08700104 .class, xml, _classes));
+ return ((MxCamt08700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700105.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700105.java
index 20fda614b..ded536c55 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700105.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700105 parse(String xml) {
- return ((MxCamt08700105) MxReadImpl.parse(MxCamt08700105 .class, xml, _classes));
+ return ((MxCamt08700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700106.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700106.java
index a365568a8..1a002fd3f 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700106.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700106 parse(String xml) {
- return ((MxCamt08700106) MxReadImpl.parse(MxCamt08700106 .class, xml, _classes));
+ return ((MxCamt08700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700107.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700107.java
index 7163f2f41..229118e59 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700107.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700107 parse(String xml) {
- return ((MxCamt08700107) MxReadImpl.parse(MxCamt08700107 .class, xml, _classes));
+ return ((MxCamt08700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700108.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700108.java
index 9b5af43c7..d64e2057d 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700108.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08700108 parse(String xml) {
- return ((MxCamt08700108) MxReadImpl.parse(MxCamt08700108 .class, xml, _classes));
+ return ((MxCamt08700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08800101.java
index 32d273429..d76a6bdc7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08800101 parse(String xml) {
- return ((MxCamt08800101) MxReadImpl.parse(MxCamt08800101 .class, xml, _classes));
+ return ((MxCamt08800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08900101.java
index 01c0251fe..27c0979d0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt08900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt08900101 parse(String xml) {
- return ((MxCamt08900101) MxReadImpl.parse(MxCamt08900101 .class, xml, _classes));
+ return ((MxCamt08900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt08900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt08900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt08900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09000101.java
index 0e330540b..97f7ee7cb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09000101 parse(String xml) {
- return ((MxCamt09000101) MxReadImpl.parse(MxCamt09000101 .class, xml, _classes));
+ return ((MxCamt09000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09100101.java
index d89019bed..48ab4f774 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09100101 parse(String xml) {
- return ((MxCamt09100101) MxReadImpl.parse(MxCamt09100101 .class, xml, _classes));
+ return ((MxCamt09100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09200101.java
index 41876a2be..06a3735bb 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09200101 parse(String xml) {
- return ((MxCamt09200101) MxReadImpl.parse(MxCamt09200101 .class, xml, _classes));
+ return ((MxCamt09200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09300101.java
index 50a9f91b6..f52ca6193 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09300101 parse(String xml) {
- return ((MxCamt09300101) MxReadImpl.parse(MxCamt09300101 .class, xml, _classes));
+ return ((MxCamt09300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09400101.java
index 4ad2b0506..7f1d3bb39 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09400101 parse(String xml) {
- return ((MxCamt09400101) MxReadImpl.parse(MxCamt09400101 .class, xml, _classes));
+ return ((MxCamt09400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09500101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09500101.java
index e81b01cc8..f9e5da7ce 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09500101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09500101 parse(String xml) {
- return ((MxCamt09500101) MxReadImpl.parse(MxCamt09500101 .class, xml, _classes));
+ return ((MxCamt09500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09600101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09600101.java
index d7defa4d7..297375d03 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09600101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09600101 parse(String xml) {
- return ((MxCamt09600101) MxReadImpl.parse(MxCamt09600101 .class, xml, _classes));
+ return ((MxCamt09600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09700101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09700101.java
index d0b21c608..6a5a4aa7b 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09700101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09700101 parse(String xml) {
- return ((MxCamt09700101) MxReadImpl.parse(MxCamt09700101 .class, xml, _classes));
+ return ((MxCamt09700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09800101.java
index 707b84da1..6bd208269 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09800101 parse(String xml) {
- return ((MxCamt09800101) MxReadImpl.parse(MxCamt09800101 .class, xml, _classes));
+ return ((MxCamt09800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09900101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09900101.java
index 71b524911..a5015bd18 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09900101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt09900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt09900101 parse(String xml) {
- return ((MxCamt09900101) MxReadImpl.parse(MxCamt09900101 .class, xml, _classes));
+ return ((MxCamt09900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt09900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt09900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt09900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10000101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10000101.java
index e86ed0963..44efbb0c7 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10000101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10000101 parse(String xml) {
- return ((MxCamt10000101) MxReadImpl.parse(MxCamt10000101 .class, xml, _classes));
+ return ((MxCamt10000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10100101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10100101.java
index 3887dcd4b..b41197036 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10100101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10100101 parse(String xml) {
- return ((MxCamt10100101) MxReadImpl.parse(MxCamt10100101 .class, xml, _classes));
+ return ((MxCamt10100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200101.java
index 3d8a40318..03df95f8a 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10200101 parse(String xml) {
- return ((MxCamt10200101) MxReadImpl.parse(MxCamt10200101 .class, xml, _classes));
+ return ((MxCamt10200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200102.java
index d9e4cfea8..74ebf5ea9 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10200102 parse(String xml) {
- return ((MxCamt10200102) MxReadImpl.parse(MxCamt10200102 .class, xml, _classes));
+ return ((MxCamt10200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300101.java
index a0156ef44..0319c7fd0 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10300101 parse(String xml) {
- return ((MxCamt10300101) MxReadImpl.parse(MxCamt10300101 .class, xml, _classes));
+ return ((MxCamt10300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300102.java
index 6993fb9a6..e930d44c2 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10300102 parse(String xml) {
- return ((MxCamt10300102) MxReadImpl.parse(MxCamt10300102 .class, xml, _classes));
+ return ((MxCamt10300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10400101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10400101.java
index 7b2b8e5fe..3bc1d9bab 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10400101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt10400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt10400101 parse(String xml) {
- return ((MxCamt10400101) MxReadImpl.parse(MxCamt10400101 .class, xml, _classes));
+ return ((MxCamt10400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt10400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt10400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt10400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800101.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800101.java
index b83262926..e45e3f0ec 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800101.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt99800101 parse(String xml) {
- return ((MxCamt99800101) MxReadImpl.parse(MxCamt99800101 .class, xml, _classes));
+ return ((MxCamt99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt99800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt99800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800102.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800102.java
index f27c249ec..201a1ae10 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800102.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt99800102 parse(String xml) {
- return ((MxCamt99800102) MxReadImpl.parse(MxCamt99800102 .class, xml, _classes));
+ return ((MxCamt99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt99800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt99800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800103.java b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800103.java
index 3d2fde7a1..b79d08111 100644
--- a/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800103.java
+++ b/model-camt-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCamt99800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCamt99800103 parse(String xml) {
- return ((MxCamt99800103) MxReadImpl.parse(MxCamt99800103 .class, xml, _classes));
+ return ((MxCamt99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCamt99800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCamt99800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCamt99800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification1.java
index 728a4290b..750fa9025 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class AccountNotification1 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -143,7 +146,7 @@ public AccountNotification1 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -155,7 +158,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification10.java
index d4ba74d6c..db86b72eb 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification10 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification10 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification10 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification11.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification11.java
index e18b054f6..a90931b1c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification11.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification11.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification11 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -177,7 +180,7 @@ public AccountNotification11 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -189,7 +192,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification11 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification12.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification12.java
index bd341409f..5d2103d64 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification12.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification12 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -177,7 +180,7 @@ public AccountNotification12 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -189,7 +192,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification12 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification13.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification13.java
index da442e568..82a7d89be 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification13.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification13 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification13 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification13 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification15.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification15.java
index db3e20dfa..98da0fc54 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification15.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AccountNotification15 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -205,7 +208,7 @@ public AccountNotification15 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification15 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification16.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification16.java
index f298b61cb..21283c9b7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification16.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification16.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification16 {
protected CashAccount38 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification16 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification16 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification17.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification17.java
index df6a8c077..7d83d223a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification17.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AccountNotification17 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -205,7 +208,7 @@ public AccountNotification17 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification17 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification18.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification18.java
index b2c7931a4..416c9b2df 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification18.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification18.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification18 {
protected CashAccount40 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification18 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification18 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification19.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification19.java
index 13e916ee1..82b84e752 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification19.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification19.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AccountNotification19 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -205,7 +208,7 @@ public AccountNotification19 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification19 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification2.java
index f6ef5077a..0a914c066 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class AccountNotification2 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -149,7 +152,7 @@ public AccountNotification2 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -161,7 +164,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification4.java
index 57d4ef155..bab1f451a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification4 {
protected CashAccount16 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification4 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification4 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification5.java
index 7a4130654..d3c6ea3d7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification5 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -177,7 +180,7 @@ public AccountNotification5 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -189,7 +192,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification6.java
index 5fb0497ca..26c8d2b2c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification6 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -216,7 +219,7 @@ public AccountNotification6 setTtlAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification6 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification7.java
index 4ca58ff1e..7160713ad 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountNotification7.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class AccountNotification7 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -177,7 +180,7 @@ public AccountNotification7 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -189,7 +192,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountNotification7 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport11.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport11.java
index ee5d1d0ea..be6ba3372 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport11.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport11.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class AccountReport11 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -152,7 +155,7 @@ public AccountReport11 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport11 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport12.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport12.java
index 1e9d94a3f..8b3bb1273 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport12.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountReport12 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountReport12 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport12 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport16.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport16.java
index f29e77646..282f20058 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport16.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport16.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountReport16 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountReport16 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport16 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport18.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport18.java
index 6b447895f..0c77e8f5b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport18.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport18.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountReport18 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountReport18 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport18 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport22.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport22.java
index a7e8974e1..167511e4b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport22.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport22.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountReport22 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountReport22 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport22 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport25.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport25.java
index 2c32e4a2e..81269bae5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport25.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport25.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountReport25 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountReport25 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport25 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport30.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport30.java
index 4ae2b9f5c..a7b2abf2f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport30.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport30.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountReport30 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountReport30 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport30 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport9.java
index 79594ac1b..8e686154f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport9.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class AccountReport9 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -149,7 +152,7 @@ public AccountReport9 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -161,7 +164,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport9 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement1.java
index cce7fba52..0e335bbc1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class AccountStatement1 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -149,7 +152,7 @@ public AccountStatement1 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -161,7 +164,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement10.java
index 954ad5d3c..8368b3b79 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountStatement10 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountStatement10 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement10 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement2.java
index d6b5ee126..c09a2147e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class AccountStatement2 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -152,7 +155,7 @@ public AccountStatement2 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement3.java
index 27d6d42ae..2bc84f619 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountStatement3 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountStatement3 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement4.java
index 82d694027..93caa16dd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountStatement4 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountStatement4 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement5.java
index 40f8d4123..ce60f4bde 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountStatement5 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountStatement5 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement6.java
index c7c4be7b8..8b1ab193c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountStatement6 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountStatement6 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement8.java
index 5a26e4506..2edd51be8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountStatement8 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountStatement8 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement8 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement9.java
index 4ac3298ae..63af24f26 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountStatement9.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class AccountStatement9 {
protected SequenceRange1Choice rptgSeq;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -208,7 +211,7 @@ public AccountStatement9 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -220,7 +223,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountStatement9 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail4.java
index a02a04a0d..38127f40b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuditTrail4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class AuditTrail4 {
@XmlElement(name = "Rcrd", required = true)
protected AuditTrailBusinessItem2Choice rcrd;
- @XmlElement(name = "OprTmStmp", required = true)
+ @XmlElement(name = "OprTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar oprTmStmp;
@XmlElement(name = "ApprvlSts", required = true)
@@ -68,7 +71,7 @@ public AuditTrail4 setRcrd(AuditTrailBusinessItem2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOprTmStmp() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getOprTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AuditTrail4 setOprTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BalanceAdjustment1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BalanceAdjustment1.java
index 49652e9b3..4fa279564 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BalanceAdjustment1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BalanceAdjustment1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,10 +44,12 @@ public class BalanceAdjustment1 {
protected AmountAndDirection34 balAmt;
@XmlElement(name = "AvrgAmt")
protected AmountAndDirection34 avrgAmt;
- @XmlElement(name = "ErrDt")
+ @XmlElement(name = "ErrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar errDt;
- @XmlElement(name = "PstngDt", required = true)
+ @XmlElement(name = "PstngDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pstngDt;
@XmlElement(name = "Days")
@@ -158,7 +162,7 @@ public BalanceAdjustment1 setAvrgAmt(AmountAndDirection34 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getErrDt() {
@@ -170,7 +174,7 @@ public XMLGregorianCalendar getErrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BalanceAdjustment1 setErrDt(XMLGregorianCalendar value) {
@@ -183,7 +187,7 @@ public BalanceAdjustment1 setErrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPstngDt() {
@@ -195,7 +199,7 @@ public XMLGregorianCalendar getPstngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BalanceAdjustment1 setPstngDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingServiceAdjustment1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingServiceAdjustment1.java
index eac29d87f..ce141aca1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingServiceAdjustment1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingServiceAdjustment1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class BillingServiceAdjustment1 {
protected AmountAndDirection34 amt;
@XmlElement(name = "BalReqrdAmt")
protected AmountAndDirection34 balReqrdAmt;
- @XmlElement(name = "ErrDt")
+ @XmlElement(name = "ErrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar errDt;
@XmlElement(name = "AdjstmntId")
@@ -178,7 +181,7 @@ public BillingServiceAdjustment1 setBalReqrdAmt(AmountAndDirection34 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getErrDt() {
@@ -190,7 +193,7 @@ public XMLGregorianCalendar getErrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingServiceAdjustment1 setErrDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement1.java
index e6a57724e..77f6af352 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class BillingStatement1 {
protected String stmtId;
@XmlElement(name = "FrToDt", required = true)
protected DatePeriod1 frToDt;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Sts", required = true)
@@ -123,7 +126,7 @@ public BillingStatement1 setFrToDt(DatePeriod1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -135,7 +138,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingStatement1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement2.java
index 0350bf786..c6796ab81 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class BillingStatement2 {
protected String stmtId;
@XmlElement(name = "FrToDt", required = true)
protected DatePeriod1 frToDt;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Sts", required = true)
@@ -123,7 +126,7 @@ public BillingStatement2 setFrToDt(DatePeriod1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -135,7 +138,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingStatement2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement3.java
index ec0a2f1ff..e67fd3873 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class BillingStatement3 {
protected String stmtId;
@XmlElement(name = "FrToDt", required = true)
protected DatePeriod1 frToDt;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Sts", required = true)
@@ -123,7 +126,7 @@ public BillingStatement3 setFrToDt(DatePeriod1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -135,7 +138,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingStatement3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement4.java
index 8eb383cdf..641ae80c1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingStatement4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class BillingStatement4 {
protected String stmtId;
@XmlElement(name = "FrToDt", required = true)
protected DatePeriod1 frToDt;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Sts", required = true)
@@ -123,7 +126,7 @@ public BillingStatement4 setFrToDt(DatePeriod1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -135,7 +138,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingStatement4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion1.java
index 6d4a35fdb..8dd9b2fa4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class BillingTaxRegion1 {
protected String rgnNm;
@XmlElement(name = "CstmrTaxId", required = true)
protected String cstmrTaxId;
- @XmlElement(name = "PtDt")
+ @XmlElement(name = "PtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar ptDt;
@XmlElement(name = "SndgFI")
@@ -133,7 +136,7 @@ public BillingTaxRegion1 setCstmrTaxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPtDt() {
@@ -145,7 +148,7 @@ public XMLGregorianCalendar getPtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingTaxRegion1 setPtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion2.java
index 35c9810e5..bb07f2d69 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BillingTaxRegion2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class BillingTaxRegion2 {
protected String rgnNm;
@XmlElement(name = "CstmrTaxId", required = true)
protected String cstmrTaxId;
- @XmlElement(name = "PtDt")
+ @XmlElement(name = "PtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar ptDt;
@XmlElement(name = "SndgFI")
@@ -133,7 +136,7 @@ public BillingTaxRegion2 setCstmrTaxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPtDt() {
@@ -145,7 +148,7 @@ public XMLGregorianCalendar getPtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BillingTaxRegion2 setPtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay2.java
index 921db381f..28bcb90ff 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class BusinessDay2 {
- @XmlElement(name = "SysDt")
+ @XmlElement(name = "SysDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sysDt;
@XmlElement(name = "SysSts")
@@ -42,7 +45,7 @@ public class BusinessDay2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSysDt() {
@@ -54,7 +57,7 @@ public XMLGregorianCalendar getSysDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessDay2 setSysDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay4.java
index 13a55a57b..d9a17692a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class BusinessDay4 {
- @XmlElement(name = "SysDt")
+ @XmlElement(name = "SysDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sysDt;
@XmlElement(name = "SysSts")
@@ -42,7 +45,7 @@ public class BusinessDay4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSysDt() {
@@ -54,7 +57,7 @@ public XMLGregorianCalendar getSysDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessDay4 setSysDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay7.java
index bece19067..61a919db8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDay7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class BusinessDay7 {
- @XmlElement(name = "SysDt")
+ @XmlElement(name = "SysDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sysDt;
@XmlElement(name = "SysSts")
@@ -42,7 +45,7 @@ public class BusinessDay7 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSysDt() {
@@ -54,7 +57,7 @@ public XMLGregorianCalendar getSysDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessDay7 setSysDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria1.java
index e2c9a6087..25cb01412 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class BusinessDaySearchCriteria1 {
- @XmlElement(name = "SysDt")
+ @XmlElement(name = "SysDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sysDt;
@XmlElement(name = "SysId")
@@ -48,7 +51,7 @@ public class BusinessDaySearchCriteria1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSysDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getSysDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessDaySearchCriteria1 setSysDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria2.java
index 66c358ce8..cd73a36bf 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessDaySearchCriteria2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class BusinessDaySearchCriteria2 {
- @XmlElement(name = "SysDt")
+ @XmlElement(name = "SysDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sysDt;
@XmlElement(name = "SysId")
@@ -48,7 +51,7 @@ public class BusinessDaySearchCriteria2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSysDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getSysDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessDaySearchCriteria2 setSysDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction1.java
index 7165911ff..8b709994d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class CardIndividualTransaction1 {
protected TransactionIdentifier1 txId;
@XmlElement(name = "Pdct")
protected Product2 pdct;
- @XmlElement(name = "VldtnDt")
+ @XmlElement(name = "VldtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtnDt;
@XmlElement(name = "VldtnSeqNb")
@@ -234,7 +237,7 @@ public CardIndividualTransaction1 setPdct(Product2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtnDt() {
@@ -246,7 +249,7 @@ public XMLGregorianCalendar getVldtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardIndividualTransaction1 setVldtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment.java
index 705de40db..fd2d9e91f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CaseAssignment {
protected String assgnr;
@XmlElement(name = "Assgne", required = true)
protected String assgne;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public CaseAssignment setAssgne(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseAssignment setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment2.java
index 2143b9a01..9a292b9be 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CaseAssignment2 {
protected Party7Choice assgnr;
@XmlElement(name = "Assgne", required = true)
protected Party7Choice assgne;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public CaseAssignment2 setAssgne(Party7Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseAssignment2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment3.java
index 0d7a9cfa2..2c8423a79 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CaseAssignment3 {
protected Party12Choice assgnr;
@XmlElement(name = "Assgne", required = true)
protected Party12Choice assgne;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public CaseAssignment3 setAssgne(Party12Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseAssignment3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment4.java
index add0edd24..95e7acc9c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CaseAssignment4 {
protected Party35Choice assgnr;
@XmlElement(name = "Assgne", required = true)
protected Party35Choice assgne;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public CaseAssignment4 setAssgne(Party35Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseAssignment4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment5.java
index fdce52869..1c76b9aa4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseAssignment5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CaseAssignment5 {
protected Party40Choice assgnr;
@XmlElement(name = "Assgne", required = true)
protected Party40Choice assgne;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public CaseAssignment5 setAssgne(Party40Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseAssignment5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus.java
index 28c9777c5..34204c210 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CaseStatus {
- @XmlElement(name = "DtTm", required = true)
+ @XmlElement(name = "DtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CaseSts", required = true)
@@ -45,7 +48,7 @@ public class CaseStatus {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -57,7 +60,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseStatus setDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus2.java
index 67fc5a2d8..2510fc097 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CaseStatus2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class CaseStatus2 {
- @XmlElement(name = "DtTm", required = true)
+ @XmlElement(name = "DtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CaseSts", required = true)
@@ -41,7 +44,7 @@ public class CaseStatus2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CaseStatus2 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics1.java
index 80e2a1799..a6473ae18 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class CashAccountCharacteristics1 {
protected CompensationMethod1Code compstnMtd;
@XmlElement(name = "DbtAcct")
protected AccountIdentification4Choice dbtAcct;
- @XmlElement(name = "DelydDbtDt")
+ @XmlElement(name = "DelydDbtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar delydDbtDt;
@XmlElement(name = "SttlmAdvc")
@@ -222,7 +225,7 @@ public CashAccountCharacteristics1 setDbtAcct(AccountIdentification4Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDelydDbtDt() {
@@ -234,7 +237,7 @@ public XMLGregorianCalendar getDelydDbtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashAccountCharacteristics1 setDelydDbtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics2.java
index 5ad82848c..40e5006d1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class CashAccountCharacteristics2 {
protected CompensationMethod1Code compstnMtd;
@XmlElement(name = "DbtAcct")
protected AccountIdentification4Choice dbtAcct;
- @XmlElement(name = "DelydDbtDt")
+ @XmlElement(name = "DelydDbtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar delydDbtDt;
@XmlElement(name = "SttlmAdvc")
@@ -222,7 +225,7 @@ public CashAccountCharacteristics2 setDbtAcct(AccountIdentification4Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDelydDbtDt() {
@@ -234,7 +237,7 @@ public XMLGregorianCalendar getDelydDbtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashAccountCharacteristics2 setDelydDbtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics3.java
index 12a8999e1..cb05809a1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class CashAccountCharacteristics3 {
protected CompensationMethod1Code compstnMtd;
@XmlElement(name = "DbtAcct")
protected AccountIdentification4Choice dbtAcct;
- @XmlElement(name = "DelydDbtDt")
+ @XmlElement(name = "DelydDbtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar delydDbtDt;
@XmlElement(name = "SttlmAdvc")
@@ -222,7 +225,7 @@ public CashAccountCharacteristics3 setDbtAcct(AccountIdentification4Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDelydDbtDt() {
@@ -234,7 +237,7 @@ public XMLGregorianCalendar getDelydDbtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashAccountCharacteristics3 setDelydDbtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics4.java
index 52a335ab4..25b3c1fd8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAccountCharacteristics4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class CashAccountCharacteristics4 {
protected CompensationMethod1Code compstnMtd;
@XmlElement(name = "DbtAcct")
protected AccountIdentification4Choice dbtAcct;
- @XmlElement(name = "DelydDbtDt")
+ @XmlElement(name = "DelydDbtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar delydDbtDt;
@XmlElement(name = "SttlmAdvc")
@@ -222,7 +225,7 @@ public CashAccountCharacteristics4 setDbtAcct(AccountIdentification4Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDelydDbtDt() {
@@ -234,7 +237,7 @@ public XMLGregorianCalendar getDelydDbtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashAccountCharacteristics4 setDelydDbtDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashBalanceAvailabilityDate1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashBalanceAvailabilityDate1.java
index 3818bce6f..542824fec 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashBalanceAvailabilityDate1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashBalanceAvailabilityDate1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class CashBalanceAvailabilityDate1 {
@XmlElement(name = "NbOfDays")
protected String nbOfDays;
- @XmlElement(name = "ActlDt")
+ @XmlElement(name = "ActlDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar actlDt;
@@ -62,7 +65,7 @@ public CashBalanceAvailabilityDate1 setNbOfDays(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActlDt() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getActlDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashBalanceAvailabilityDate1 setActlDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast1.java
index ede7e609a..fed477d46 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class CashInForecast1 {
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -48,7 +51,7 @@ public class CashInForecast1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast2.java
index 6828dae86..c4711ec02 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CashInForecast2 {
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -43,7 +46,7 @@ public class CashInForecast2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast3.java
index 8838d42ea..547afb198 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class CashInForecast3 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -48,7 +51,7 @@ public class CashInForecast3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast3 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast4.java
index 4967f0a68..da4b82a8c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CashInForecast4 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -43,7 +46,7 @@ public class CashInForecast4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast4 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast5.java
index f11a8e435..8a24a1411 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class CashInForecast5 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -51,7 +54,7 @@ public class CashInForecast5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -63,7 +66,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast5 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast6.java
index e2cd6a44a..9e19cb7f6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInForecast6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class CashInForecast6 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -46,7 +49,7 @@ public class CashInForecast6 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -58,7 +61,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInForecast6 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInOutForecast7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInOutForecast7.java
index ed7e11f73..430351e73 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInOutForecast7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashInOutForecast7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class CashInOutForecast7 {
- @XmlElement(name = "CshSttlmDt")
+ @XmlElement(name = "CshSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "Amt", required = true)
@@ -37,7 +40,7 @@ public class CashInOutForecast7 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashInOutForecast7 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast1.java
index 0c20f5391..f2794ef15 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class CashOutForecast1 {
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -48,7 +51,7 @@ public class CashOutForecast1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast2.java
index 78ac09789..ac83369c1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CashOutForecast2 {
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -43,7 +46,7 @@ public class CashOutForecast2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast3.java
index f5bd3726c..cb430c7ab 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class CashOutForecast3 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -48,7 +51,7 @@ public class CashOutForecast3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -60,7 +63,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast3 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast4.java
index 691beec65..07778d555 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class CashOutForecast4 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -43,7 +46,7 @@ public class CashOutForecast4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast4 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast5.java
index ce1f9c17d..7d8f1a808 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class CashOutForecast5 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -51,7 +54,7 @@ public class CashOutForecast5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -63,7 +66,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast5 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast6.java
index d7bad9ac8..ab19c661a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashOutForecast6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class CashOutForecast6 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "SubTtlAmt")
@@ -46,7 +49,7 @@ public class CashOutForecast6 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -58,7 +61,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashOutForecast6 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt1.java
index a81bce05e..f3a848f5b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class ClaimNonReceipt1 {
- @XmlElement(name = "DtPrcd", required = true)
+ @XmlElement(name = "DtPrcd", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtPrcd;
@XmlElement(name = "OrgnlNxtAgt", required = true)
@@ -37,7 +40,7 @@ public class ClaimNonReceipt1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtPrcd() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDtPrcd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ClaimNonReceipt1 setDtPrcd(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt2.java
index 88f4008f3..99005074c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClaimNonReceipt2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class ClaimNonReceipt2 {
- @XmlElement(name = "DtPrcd", required = true)
+ @XmlElement(name = "DtPrcd", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtPrcd;
@XmlElement(name = "OrgnlNxtAgt")
@@ -37,7 +40,7 @@ public class ClaimNonReceipt2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtPrcd() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDtPrcd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ClaimNonReceipt2 setDtPrcd(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompensationMethod1Code.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompensationMethod1Code.java
index 9bbbb4b9a..db0316eb0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompensationMethod1Code.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CompensationMethod1Code.java
@@ -34,7 +34,7 @@ public enum CompensationMethod1Code {
NOCP,
/**
- * Account is debited for any charges or taxes due.
+ * Account is debited for any charges or taxes due.
*
*/
DBTD,
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveGroupInformation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveGroupInformation1.java
index 95d814d71..a9a07929e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveGroupInformation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveGroupInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class CorrectiveGroupInformation1 {
protected String msgId;
@XmlElement(name = "MsgNmId", required = true)
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -90,7 +93,7 @@ public CorrectiveGroupInformation1 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectiveGroupInformation1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction1.java
index c912c3ba7..3f7634258 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class CorrectiveInterbankTransaction1 {
protected String txId;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@@ -174,7 +177,7 @@ public CorrectiveInterbankTransaction1 setIntrBkSttlmAmt(ActiveOrHistoricCurrenc
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -186,7 +189,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectiveInterbankTransaction1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction2.java
index 7fb65e271..182e4e948 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class CorrectiveInterbankTransaction2 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@@ -202,7 +205,7 @@ public CorrectiveInterbankTransaction2 setIntrBkSttlmAmt(ActiveOrHistoricCurrenc
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectiveInterbankTransaction2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction3.java
index 722ef9be7..0210b98b9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectiveInterbankTransaction3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class CorrectiveInterbankTransaction3 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@@ -202,7 +205,7 @@ public CorrectiveInterbankTransaction3 setIntrBkSttlmAmt(ActiveOrHistoricCurrenc
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectiveInterbankTransaction3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation1.java
index a764b9441..49070dbc1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class CorrectivePaymentInitiation1 {
protected String endToEndId;
@XmlElement(name = "InstdAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -178,7 +182,7 @@ public CorrectivePaymentInitiation1 setInstdAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -190,7 +194,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation1 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -203,7 +207,7 @@ public CorrectivePaymentInitiation1 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -215,7 +219,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation1 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation2.java
index f720224fd..ab5277703 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class CorrectivePaymentInitiation2 {
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTimeChoice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -202,7 +205,7 @@ public CorrectivePaymentInitiation2 setReqdExctnDt(DateAndDateTimeChoice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation2 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation3.java
index 371967674..a251c3123 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class CorrectivePaymentInitiation3 {
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -202,7 +205,7 @@ public CorrectivePaymentInitiation3 setReqdExctnDt(DateAndDateTime2Choice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation3 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation4.java
index b81df08ff..7135ac2c9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class CorrectivePaymentInitiation4 {
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -230,7 +233,7 @@ public CorrectivePaymentInitiation4 setReqdExctnDt(DateAndDateTime2Choice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -242,7 +245,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation4 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation5.java
index 51b4e31a4..47b500f25 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInitiation5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class CorrectivePaymentInitiation5 {
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -230,7 +233,7 @@ public CorrectivePaymentInitiation5 setReqdExctnDt(DateAndDateTime2Choice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -242,7 +245,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInitiation5 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInstructionExtract.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInstructionExtract.java
index a16cc10c8..ed7e41722 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInstructionExtract.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CorrectivePaymentInstructionExtract.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,10 +37,12 @@ public class CorrectivePaymentInstructionExtract {
protected CurrencyAndAmount instdAmt;
@XmlElement(name = "IntrBkSttlmAmt")
protected CurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@@ -122,7 +126,7 @@ public CorrectivePaymentInstructionExtract setIntrBkSttlmAmt(CurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -134,7 +138,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInstructionExtract setReqdExctnDt(XMLGregorianCalendar value) {
@@ -147,7 +151,7 @@ public CorrectivePaymentInstructionExtract setReqdExctnDt(XMLGregorianCalendar v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +163,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CorrectivePaymentInstructionExtract setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange20.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange20.java
index 63c4a01f7..bd36e8133 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange20.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange20.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class CurrencyExchange20 {
protected BigDecimal xchgRate;
@XmlElement(name = "QtdCcy", required = true)
protected String qtdCcy;
- @XmlElement(name = "QtnDt", required = true)
+ @XmlElement(name = "QtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@XmlElement(name = "LwLmt")
@@ -97,7 +100,7 @@ public CurrencyExchange20 setQtdCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -109,7 +112,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchange20 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange6.java
index e029574f2..697e10315 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class CurrencyExchange6 {
protected String unitCcy;
@XmlElement(name = "Cmnts")
protected String cmnts;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@@ -203,7 +206,7 @@ public CurrencyExchange6 setCmnts(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -215,7 +218,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchange6 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange7.java
index f158b2b35..4373341f8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class CurrencyExchange7 {
protected BigDecimal xchgRate;
@XmlElement(name = "QtdCcy", required = true)
protected String qtdCcy;
- @XmlElement(name = "QtnDt", required = true)
+ @XmlElement(name = "QtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@@ -91,7 +94,7 @@ public CurrencyExchange7 setQtdCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchange7 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchangeDetails.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchangeDetails.java
index b3c73c1a6..6e0f7b23f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchangeDetails.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchangeDetails.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class CurrencyExchangeDetails {
protected BigDecimal xchgRate;
@XmlElement(name = "QtdCcy", required = true)
protected String qtdCcy;
- @XmlElement(name = "QtnDt", required = true)
+ @XmlElement(name = "QtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@@ -91,7 +94,7 @@ public CurrencyExchangeDetails setQtdCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchangeDetails setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPeriod2Choice.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPeriod2Choice.java
index 9f108be20..89607b5a6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPeriod2Choice.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPeriod2Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,15 +30,18 @@
})
public class DateAndPeriod2Choice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Prd")
protected Period2 prd;
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -45,7 +50,7 @@ public class DateAndPeriod2Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -57,7 +62,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPeriod2Choice setDt(XMLGregorianCalendar value) {
@@ -95,7 +100,7 @@ public DateAndPeriod2Choice setPrd(Period2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -107,7 +112,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPeriod2Choice setFrDt(XMLGregorianCalendar value) {
@@ -120,7 +125,7 @@ public DateAndPeriod2Choice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -132,7 +137,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPeriod2Choice setToDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2Choice.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2Choice.java
index 39e7da83c..d1a7ff1e0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2Choice.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class DatePeriod2Choice {
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrToDt")
@@ -41,7 +45,7 @@ public class DatePeriod2Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod2Choice setFrDt(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public DatePeriod2Choice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod2Choice setToDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails2Choice.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails2Choice.java
index 4f9b4e08e..6c38418c3 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails2Choice.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails2Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class DatePeriodDetails2Choice {
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrToDt")
@@ -41,7 +45,7 @@ public class DatePeriodDetails2Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails2Choice setFrDt(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public DatePeriodDetails2Choice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails2Choice setToDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation1.java
index 9975ec4c4..8b9316d30 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DebitAuthorisation1 {
protected CancellationReason14Choice cxlRsn;
@XmlElement(name = "AmtToDbt")
protected ActiveOrHistoricCurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@XmlElement(name = "AddtlCxlRsnInf")
@@ -95,7 +98,7 @@ public DebitAuthorisation1 setAmtToDbt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisation1 setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation2.java
index 34b945436..6906b0746 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DebitAuthorisation2 {
protected CancellationReason33Choice cxlRsn;
@XmlElement(name = "AmtToDbt")
protected ActiveOrHistoricCurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@XmlElement(name = "AddtlCxlRsnInf")
@@ -95,7 +98,7 @@ public DebitAuthorisation2 setAmtToDbt(ActiveOrHistoricCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisation2 setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation.java
index e054ee8ba..c5c33c112 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DebitAuthorisationConfirmation {
protected boolean dbtAuthstn;
@XmlElement(name = "AmtToDbt")
protected CurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@XmlElement(name = "Rsn")
@@ -85,7 +88,7 @@ public DebitAuthorisationConfirmation setAmtToDbt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -97,7 +100,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisationConfirmation setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation2.java
index 7131ec3a3..1ad33e0c9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationConfirmation2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DebitAuthorisationConfirmation2 {
protected boolean dbtAuthstn;
@XmlElement(name = "AmtToDbt")
protected ActiveCurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@XmlElement(name = "Rsn")
@@ -85,7 +88,7 @@ public DebitAuthorisationConfirmation2 setAmtToDbt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -97,7 +100,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisationConfirmation2 setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails.java
index 8157820e0..f172c25a4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DebitAuthorisationDetails {
protected CancellationReason1Code cxlRsn;
@XmlElement(name = "AmtToDbt")
protected CurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@@ -91,7 +94,7 @@ public DebitAuthorisationDetails setAmtToDbt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisationDetails setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails2.java
index a6a889a88..a0071a35f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class DebitAuthorisationDetails2 {
protected CancellationReason3Code cxlRsn;
@XmlElement(name = "AmtToDbt")
protected CurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@@ -91,7 +94,7 @@ public DebitAuthorisationDetails2 setAmtToDbt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisationDetails2 setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails3.java
index 3b38f4013..86fd80db1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DebitAuthorisationDetails3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DebitAuthorisationDetails3 {
protected CancellationReason2Choice cxlRsn;
@XmlElement(name = "AmtToDbt")
protected ActiveOrHistoricCurrencyAndAmount amtToDbt;
- @XmlElement(name = "ValDtToDbt")
+ @XmlElement(name = "ValDtToDbt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDtToDbt;
@XmlElement(name = "AddtlCxlRsnInf")
@@ -95,7 +98,7 @@ public DebitAuthorisationDetails3 setAmtToDbt(ActiveOrHistoricCurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtToDbt() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getValDtToDbt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DebitAuthorisationDetails3 setValDtToDbt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExecutionType1Choice.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExecutionType1Choice.java
index d26ae89ca..d3679fa4f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExecutionType1Choice.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExecutionType1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class ExecutionType1Choice {
- @XmlElement(name = "Tm")
+ @XmlElement(name = "Tm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar tm;
@XmlElement(name = "Evt")
@@ -37,7 +40,7 @@ public class ExecutionType1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTm() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ExecutionType1Choice setTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader23.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader23.java
index b52f3d3d8..b67aef63c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader23.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader23.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class GroupHeader23 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -71,7 +74,7 @@ public GroupHeader23 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader23 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader42.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader42.java
index 9ebd59d81..21f59d6c9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader42.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader42.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class GroupHeader42 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -71,7 +74,7 @@ public GroupHeader42 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader42 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader43.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader43.java
index 73461864a..67c394f03 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader43.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader43.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader43 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgSndr")
@@ -65,7 +68,7 @@ public GroupHeader43 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader43 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader44.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader44.java
index a19ec4722..49eb4fad8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader44.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader44.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader44 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -65,7 +68,7 @@ public GroupHeader44 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader44 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader59.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader59.java
index 5ddbcb00e..4ab7a6bf0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader59.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader59.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader59 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgSndr")
@@ -65,7 +68,7 @@ public GroupHeader59 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader59 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader60.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader60.java
index d60e3798d..e236215d4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader60.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader60.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader60 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -65,7 +68,7 @@ public GroupHeader60 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader60 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader73.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader73.java
index bec72d529..7dc652749 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader73.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader73.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class GroupHeader73 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -74,7 +77,7 @@ public GroupHeader73 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader73 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader76.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader76.java
index 0c68beb0e..79fe825be 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader76.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader76.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader76 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgSndr")
@@ -65,7 +68,7 @@ public GroupHeader76 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader76 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader77.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader77.java
index 7f45bc07b..a46e602b6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader77.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader77.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader77 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgSndr")
@@ -65,7 +68,7 @@ public GroupHeader77 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader77 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader81.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader81.java
index 28fefebd0..5da0ab3b7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader81.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader81.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class GroupHeader81 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -74,7 +77,7 @@ public GroupHeader81 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader81 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader84.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader84.java
index a954298b1..78ec1d208 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader84.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader84.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class GroupHeader84 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -65,7 +68,7 @@ public GroupHeader84 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader84 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceCancellation6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceCancellation6.java
index e36edcc01..be1ee8a2e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceCancellation6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceCancellation6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class IntraBalanceCancellation6 {
protected ProcessingStatus69Choice prcgSts;
@XmlElement(name = "ReqRef", required = true)
protected String reqRef;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDt;
@XmlElement(name = "TxId")
@@ -180,7 +183,7 @@ public IntraBalanceCancellation6 setReqRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalanceCancellation6 setStsDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceModification6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceModification6.java
index 2f2b3fc4e..06d441124 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceModification6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceModification6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class IntraBalanceModification6 {
protected ProcessingStatus71Choice prcgSts;
@XmlElement(name = "ReqRef", required = true)
protected String reqRef;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDt;
@XmlElement(name = "ReqDtls")
@@ -180,7 +183,7 @@ public IntraBalanceModification6 setReqRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalanceModification6 setStsDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceMovement6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceMovement6.java
index b95551de8..0ceb18c07 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceMovement6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalanceMovement6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class IntraBalanceMovement6 {
protected DateAndDateTime2Choice intnddSttlmDt;
@XmlElement(name = "FctvSttlmDt")
protected DateAndDateTime2Choice fctvSttlmDt;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDt;
@XmlElement(name = "CshSubBalId")
@@ -69,7 +72,8 @@ public class IntraBalanceMovement6 {
protected PriorityNumeric4Choice prty;
@XmlElement(name = "MsgOrgtr")
protected SystemPartyIdentification8 msgOrgtr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstrPrcgAddtlDtls")
@@ -282,7 +286,7 @@ public IntraBalanceMovement6 setFctvSttlmDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -294,7 +298,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalanceMovement6 setStsDt(XMLGregorianCalendar value) {
@@ -411,7 +415,7 @@ public IntraBalanceMovement6 setMsgOrgtr(SystemPartyIdentification8 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -423,7 +427,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalanceMovement6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePending6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePending6.java
index 78936acbe..cf61ebd71 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePending6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePending6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class IntraBalancePending6 {
protected Amount2Choice sttlmAmt;
@XmlElement(name = "IntnddSttlmDt", required = true)
protected DateAndDateTime2Choice intnddSttlmDt;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDt;
@XmlElement(name = "CshSubBalId")
@@ -78,7 +81,8 @@ public class IntraBalancePending6 {
protected PriorityNumeric4Choice prty;
@XmlElement(name = "MsgOrgtr")
protected SystemPartyIdentification8 msgOrgtr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstrPrcgAddtlDtls")
@@ -366,7 +370,7 @@ public IntraBalancePending6 setIntnddSttlmDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -378,7 +382,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalancePending6 setStsDt(XMLGregorianCalendar value) {
@@ -495,7 +499,7 @@ public IntraBalancePending6 setMsgOrgtr(SystemPartyIdentification8 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -507,7 +511,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalancePending6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePosting6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePosting6.java
index b2fdc77e0..d9b4aaab1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePosting6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/IntraBalancePosting6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class IntraBalancePosting6 {
protected Amount2Choice rmngSttlmAmt;
@XmlElement(name = "FctvSttlmDt", required = true)
protected DateAndDateTime2Choice fctvSttlmDt;
- @XmlElement(name = "StsDt")
+ @XmlElement(name = "StsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsDt;
@XmlElement(name = "CshSubBalId")
@@ -78,7 +81,8 @@ public class IntraBalancePosting6 {
protected PriorityNumeric4Choice prty;
@XmlElement(name = "MsgOrgtr")
protected SystemPartyIdentification8 msgOrgtr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstrPrcgAddtlDtls")
@@ -366,7 +370,7 @@ public IntraBalancePosting6 setFctvSttlmDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsDt() {
@@ -378,7 +382,7 @@ public XMLGregorianCalendar getStsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalancePosting6 setStsDt(XMLGregorianCalendar value) {
@@ -495,7 +499,7 @@ public IntraBalancePosting6 setMsgOrgtr(SystemPartyIdentification8 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -507,7 +511,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public IntraBalancePosting6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer1.java
index 247de7d32..04c446b2a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -14,7 +16,7 @@
/**
- * Provides details specific to the liquidity credit transfer, used to transfer an amount of money from the debtor to the creditor, where both are financial institutions.
+ * Provides details specific to the liquidity credit transfer, used to transfer an amount of money from the debtor to the creditor, where both are financial institutions.
*
*
*
@@ -43,7 +45,8 @@ public class LiquidityCreditTransfer1 {
protected BranchAndFinancialInstitutionIdentification5 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount24 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityCreditTransfer1 setDbtrAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityCreditTransfer1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer2.java
index f39184566..f2d960353 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class LiquidityCreditTransfer2 {
protected BranchAndFinancialInstitutionIdentification6 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount38 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityCreditTransfer2 setDbtrAcct(CashAccount38 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityCreditTransfer2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer3.java
index 5d3c6cc1f..c152f7e9e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityCreditTransfer3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class LiquidityCreditTransfer3 {
protected BranchAndFinancialInstitutionIdentification6 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount40 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityCreditTransfer3 setDbtrAcct(CashAccount40 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityCreditTransfer3 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer1.java
index abd53b6f7..e1e75b7c4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class LiquidityDebitTransfer1 {
protected BranchAndFinancialInstitutionIdentification5 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount24 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityDebitTransfer1 setDbtrAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityDebitTransfer1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer2.java
index f0042f88c..7aeb5626a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class LiquidityDebitTransfer2 {
protected BranchAndFinancialInstitutionIdentification6 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount38 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityDebitTransfer2 setDbtrAcct(CashAccount38 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityDebitTransfer2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer3.java
index 3751cc8aa..e760fefc3 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityDebitTransfer3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class LiquidityDebitTransfer3 {
protected BranchAndFinancialInstitutionIdentification6 dbtr;
@XmlElement(name = "DbtrAcct")
protected CashAccount40 dbtrAcct;
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -202,7 +205,7 @@ public LiquidityDebitTransfer3 setDbtrAcct(CashAccount40 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityDebitTransfer3 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification2.java
index a337cbd0b..964174620 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class LongPaymentIdentification2 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected BigDecimal intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "PmtMtd")
@@ -134,7 +137,7 @@ public LongPaymentIdentification2 setIntrBkSttlmAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LongPaymentIdentification2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader4.java
index 2765a4a7b..fc045e3f3 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MessageHeader4 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -65,7 +68,7 @@ public MessageHeader4 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader6.java
index 28b5699cb..b1bf0e59a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class MessageHeader6 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "OrgnlBizQry")
@@ -71,7 +74,7 @@ public MessageHeader6 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader8.java
index 45a28773e..8a968a71d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class MessageHeader8 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgPgntn")
@@ -74,7 +77,7 @@ public MessageHeader8 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader8 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ModificationRejection2Code.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ModificationRejection2Code.java
index 4a8e15685..cad17ddc9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ModificationRejection2Code.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ModificationRejection2Code.java
@@ -199,7 +199,7 @@ public enum ModificationRejection2Code {
UM_21("UM21"),
/**
- * Debtor agent account cannot be modified (applicable for direct debits).
+ * Debtor agent acount cannot be modified (applicable for direct debits)
*
*/
@XmlEnumValue("UM22")
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast1.java
index 5cb4850f2..f95318a8b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class NetCashForecast1 {
- @XmlElement(name = "SttlmDt")
+ @XmlElement(name = "SttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "NetAmt")
@@ -44,7 +47,7 @@ public class NetCashForecast1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetCashForecast1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast2.java
index 5aeaba980..57dd6dcab 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class NetCashForecast2 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "NetAmt")
@@ -44,7 +47,7 @@ public class NetCashForecast2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetCashForecast2 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast4.java
index 85097a3f0..ebde8e9b5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class NetCashForecast4 {
- @XmlElement(name = "CshSttlmDt", required = true)
+ @XmlElement(name = "CshSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "NetAmt")
@@ -47,7 +50,7 @@ public class NetCashForecast4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -59,7 +62,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetCashForecast4 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast5.java
index 723374deb..0dbf6fcbe 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetCashForecast5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class NetCashForecast5 {
- @XmlElement(name = "CshSttlmDt")
+ @XmlElement(name = "CshSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cshSttlmDt;
@XmlElement(name = "NetAmt")
@@ -44,7 +47,7 @@ public class NetCashForecast5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCshSttlmDt() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getCshSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetCashForecast5 setCshSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetReportData1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetReportData1.java
index 797b787d4..1ed553327 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetReportData1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetReportData1.java
@@ -6,7 +6,11 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,16 +39,20 @@ public class NetReportData1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
- @XmlElement(name = "NetgCutOffTm", required = true)
+ @XmlElement(name = "NetgCutOffTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar netgCutOffTm;
- @XmlElement(name = "RptDt", required = true)
+ @XmlElement(name = "RptDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rptDt;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "RptTp")
@@ -86,7 +94,7 @@ public NetReportData1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -98,7 +106,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetReportData1 setCreDtTm(XMLGregorianCalendar value) {
@@ -111,7 +119,7 @@ public NetReportData1 setCreDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNetgCutOffTm() {
@@ -123,7 +131,7 @@ public XMLGregorianCalendar getNetgCutOffTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetReportData1 setNetgCutOffTm(XMLGregorianCalendar value) {
@@ -136,7 +144,7 @@ public NetReportData1 setNetgCutOffTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptDt() {
@@ -148,7 +156,7 @@ public XMLGregorianCalendar getRptDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetReportData1 setRptDt(XMLGregorianCalendar value) {
@@ -161,7 +169,7 @@ public NetReportData1 setRptDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -173,7 +181,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetReportData1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationEntry2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationEntry2.java
index 80636779f..5b5ad10f1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationEntry2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationEntry2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class NotificationEntry2 {
protected String endToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt", required = true)
+ @XmlElement(name = "XpctdValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr", required = true)
@@ -127,7 +130,7 @@ public NotificationEntry2 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -139,7 +142,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationEntry2 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem3.java
index 2234ba7a2..0dca7e8b5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class NotificationItem3 {
protected CashAccount16 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -248,7 +251,7 @@ public NotificationItem3 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -260,7 +263,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem3 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem4.java
index 3847749d8..0a58323ff 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class NotificationItem4 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -248,7 +251,7 @@ public NotificationItem4 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -260,7 +263,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem4 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem5.java
index 05f8e30c6..28fd22733 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class NotificationItem5 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -248,7 +251,7 @@ public NotificationItem5 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -260,7 +263,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem5 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem6.java
index bd09f499a..3e68335f7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class NotificationItem6 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -248,7 +251,7 @@ public NotificationItem6 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -260,7 +263,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem6 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem7.java
index 23be3ea7d..5ef1a1c6b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class NotificationItem7 {
protected CashAccount38 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -276,7 +279,7 @@ public NotificationItem7 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -288,7 +291,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem7 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem8.java
index 1410d6fd2..935848dc0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NotificationItem8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class NotificationItem8 {
protected CashAccount40 rltdAcct;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -276,7 +279,7 @@ public NotificationItem8 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -288,7 +291,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NotificationItem8 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader10.java
index 7ee52a2bb..c7f53a4f7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class OriginalGroupHeader10 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "NbOfTxs")
@@ -161,7 +164,7 @@ public OriginalGroupHeader10 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader10 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader14.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader14.java
index c1da1994e..5fb8c77eb 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader14.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class OriginalGroupHeader14 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -165,7 +168,7 @@ public OriginalGroupHeader14 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -177,7 +180,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader14 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader15.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader15.java
index 619b1a59b..ba6327938 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader15.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class OriginalGroupHeader15 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "NbOfTxs")
@@ -161,7 +164,7 @@ public OriginalGroupHeader15 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader15 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader4.java
index c96ff8345..422151d32 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class OriginalGroupHeader4 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "NbOfTxs")
@@ -161,7 +164,7 @@ public OriginalGroupHeader4 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader4 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader5.java
index 9d11535be..d45a37d25 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class OriginalGroupHeader5 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -165,7 +168,7 @@ public OriginalGroupHeader5 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -177,7 +180,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader5 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader6.java
index 1de5a4cfa..b94630190 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class OriginalGroupHeader6 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "NbOfTxs")
@@ -161,7 +164,7 @@ public OriginalGroupHeader6 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader6 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader9.java
index 0b9db48ea..85b0e9dd2 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader9.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class OriginalGroupHeader9 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -165,7 +168,7 @@ public OriginalGroupHeader9 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -177,7 +180,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader9 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation23.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation23.java
index 3b28d1e9d..60b701d53 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation23.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation23.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class OriginalGroupInformation23 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "NbOfTxs")
@@ -161,7 +164,7 @@ public OriginalGroupInformation23 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation23 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation24.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation24.java
index 836b6b66a..a71769f58 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation24.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class OriginalGroupInformation24 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -165,7 +168,7 @@ public OriginalGroupInformation24 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -177,7 +180,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation24 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem1.java
index aac4c3444..91c863b74 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalItem1 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@@ -118,7 +121,7 @@ public OriginalItem1 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem1 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem2.java
index 2c67c8163..f3a123a51 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class OriginalItem2 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -121,7 +124,7 @@ public OriginalItem2 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem2 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem3.java
index d8bbb959a..0cb9428f0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class OriginalItem3 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -121,7 +124,7 @@ public OriginalItem3 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem3 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem4.java
index 15803b529..7b286d91a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class OriginalItem4 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -121,7 +124,7 @@ public OriginalItem4 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem4 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem5.java
index 9670fd21d..418edae34 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class OriginalItem5 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -121,7 +124,7 @@ public OriginalItem5 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem5 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem6.java
index ffba17a10..4566fc3ee 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class OriginalItem6 {
protected String uetr;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -149,7 +152,7 @@ public OriginalItem6 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -161,7 +164,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem6 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem7.java
index 34d85fb66..9e71484e8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItem7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class OriginalItem7 {
protected String uetr;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
@@ -149,7 +152,7 @@ public OriginalItem7 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -161,7 +164,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItem7 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus1.java
index 2aa47c2c5..b9b74947b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class OriginalItemAndStatus1 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -128,7 +131,7 @@ public OriginalItemAndStatus1 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus1 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus2.java
index 163756b44..80a1390f1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class OriginalItemAndStatus2 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -128,7 +131,7 @@ public OriginalItemAndStatus2 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus2 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus3.java
index 0c7ceadfc..b8f1c44ad 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class OriginalItemAndStatus3 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -128,7 +131,7 @@ public OriginalItemAndStatus3 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus3 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus4.java
index 260fe667a..8fa0b4e8f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class OriginalItemAndStatus4 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -128,7 +131,7 @@ public OriginalItemAndStatus4 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus4 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus5.java
index ffeb8d1cf..771daeeb6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class OriginalItemAndStatus5 {
protected String orgnlEndToEndId;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -128,7 +131,7 @@ public OriginalItemAndStatus5 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -140,7 +143,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus5 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus6.java
index cdb0cd3e9..f26aa0f77 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class OriginalItemAndStatus6 {
protected String orgnlUETR;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -156,7 +159,7 @@ public OriginalItemAndStatus6 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -168,7 +171,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus6 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus7.java
index 2a3b9f6d0..b33b7df10 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalItemAndStatus7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class OriginalItemAndStatus7 {
protected String orgnlUETR;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "ItmSts", required = true)
@@ -156,7 +159,7 @@ public OriginalItemAndStatus7 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -168,7 +171,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalItemAndStatus7 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageAndIssuer1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageAndIssuer1.java
index ee3e96d3b..f96b7e3a2 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageAndIssuer1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalMessageAndIssuer1.java
@@ -14,7 +14,7 @@
/**
* Business reference(s) to one or more relevant messages previously sent by other parties, or by the same party issuing this message.
*
- *
+ * .
*
*
*
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification1.java
index b7be641e5..f76d54fbd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification1 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId")
@@ -76,7 +79,7 @@ public OriginalNotification1 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -88,7 +91,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification1 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification10.java
index 367cadd77..e146bc8d0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification10 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification10 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification10 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification11.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification11.java
index db45498a8..78b172c10 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification11.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification11 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification11 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification11 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification12.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification12.java
index 16d01cb56..21e56e1ed 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification12.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification12.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification12 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification12 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification12 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification13.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification13.java
index 5efafe4dc..f56d4ecfc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification13.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification13 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification13 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification13 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification14.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification14.java
index 20cd518b4..39095ffdc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification14.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification14.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification14 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification14 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification14 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification2.java
index 0e5434b2d..657f2e7c8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class OriginalNotification2 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId")
@@ -80,7 +83,7 @@ public OriginalNotification2 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -92,7 +95,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification2 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification3.java
index 82fd234f5..cc33a4c22 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification3 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification3 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification3 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification4.java
index 00f9b9775..b5fa31d45 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification4 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification4 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification4 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification5.java
index ee9273c4a..113fbf199 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification5 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification5 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification5 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification6.java
index 7b291837b..fab5afe5f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification6 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification6 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification6 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification7.java
index d987d10b9..757b82a29 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification7 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification7 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification7 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification8.java
index ac15f9996..e95316976 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class OriginalNotification8 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -73,7 +76,7 @@ public OriginalNotification8 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -85,7 +88,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification8 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification9.java
index 0f3a5a861..a49480223 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotification9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalNotification9 {
@XmlElement(name = "OrgnlMsgId", required = true)
protected String orgnlMsgId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNtfctnId", required = true)
@@ -77,7 +80,7 @@ public OriginalNotification9 setOrgnlMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -89,7 +92,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotification9 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference1.java
index c56426fc7..888318d41 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference1 {
protected CashAccount16 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference1 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference1 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference10.java
index 021b0c8ff..6d18b797f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference10 {
protected CashAccount38 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference10 setTtlAmt(ActiveOrHistoricCurrencyAndAmou
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference10 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference11.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference11.java
index c8427050f..ff3905ba4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference11.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference11 {
protected CashAccount40 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference11 setTtlAmt(ActiveOrHistoricCurrencyAndAmou
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference11 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference12.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference12.java
index a1bc81555..2e7fc396a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference12.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference12.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference12 {
protected CashAccount40 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference12 setTtlAmt(ActiveOrHistoricCurrencyAndAmou
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference12 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference2.java
index c42b210ee..1cf41f5e1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference2 {
protected CashAccount16 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference2 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference2 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference3.java
index bbd4ffab5..9e8f8fdbc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference3 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference3 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference3 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference4.java
index 4c0ea3a4c..92741f10f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference4 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference4 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference4 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference5.java
index d8787e746..f8aed3c2e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference5 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference5 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference5 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference6.java
index 034b29974..7cd6664c6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference6 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference6 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference6 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference7.java
index 7f0c78364..05fe1e9ae 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference7 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference7 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference7 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference8.java
index 3fcc0eb28..3cd60125d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference8 {
protected CashAccount24 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference8 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference8 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference9.java
index 59f526188..785187993 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalNotificationReference9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class OriginalNotificationReference9 {
protected CashAccount38 rltdAcct;
@XmlElement(name = "TtlAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlAmt;
- @XmlElement(name = "XpctdValDt")
+ @XmlElement(name = "XpctdValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "Dbtr")
@@ -188,7 +191,7 @@ public OriginalNotificationReference9 setTtlAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
@@ -200,7 +203,7 @@ public XMLGregorianCalendar getXpctdValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalNotificationReference9 setXpctdValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems.java
index 4fed563be..a4d9da051 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class PayInScheduleItems {
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "Ddln", required = true)
+ @XmlElement(name = "Ddln", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar ddln;
@@ -62,7 +65,7 @@ public PayInScheduleItems setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDdln() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDdln() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PayInScheduleItems setDdln(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems1.java
index 7b844b0ca..c6c83be3b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PayInScheduleItems1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class PayInScheduleItems1 {
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
- @XmlElement(name = "Ddln", required = true)
+ @XmlElement(name = "Ddln", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar ddln;
@@ -62,7 +65,7 @@ public PayInScheduleItems1 setAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDdln() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDdln() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PayInScheduleItems1 setDdln(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation10.java
index 3dd609891..7ff937a84 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -75,10 +77,12 @@ public class PaymentComplementaryInformation10 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -277,7 +281,7 @@ public PaymentComplementaryInformation10 setReqdExctnDt(DateAndDateTime2Choice v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -289,7 +293,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation10 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -302,7 +306,7 @@ public PaymentComplementaryInformation10 setReqdColltnDt(XMLGregorianCalendar va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -314,7 +318,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation10 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation2.java
index 2a4c8d426..b418c8fd0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,13 +70,16 @@ public class PaymentComplementaryInformation2 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation22 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -238,7 +243,7 @@ public PaymentComplementaryInformation2 setPmtTpInf(PaymentTypeInformation22 val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -250,7 +255,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation2 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -263,7 +268,7 @@ public PaymentComplementaryInformation2 setReqdExctnDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -275,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation2 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -288,7 +293,7 @@ public PaymentComplementaryInformation2 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -300,7 +305,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation3.java
index b97432a4e..a6bb3b2a5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,13 +70,16 @@ public class PaymentComplementaryInformation3 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -238,7 +243,7 @@ public PaymentComplementaryInformation3 setPmtTpInf(PaymentTypeInformation25 val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -250,7 +255,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation3 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -263,7 +268,7 @@ public PaymentComplementaryInformation3 setReqdExctnDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -275,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation3 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -288,7 +293,7 @@ public PaymentComplementaryInformation3 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -300,7 +305,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation4.java
index 0cb55bc44..7374d1e78 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,13 +70,16 @@ public class PaymentComplementaryInformation4 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -238,7 +243,7 @@ public PaymentComplementaryInformation4 setPmtTpInf(PaymentTypeInformation25 val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -250,7 +255,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation4 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -263,7 +268,7 @@ public PaymentComplementaryInformation4 setReqdExctnDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -275,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation4 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -288,7 +293,7 @@ public PaymentComplementaryInformation4 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -300,7 +305,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation4 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation5.java
index 351bd24fe..55efb42c3 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,13 +70,16 @@ public class PaymentComplementaryInformation5 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -238,7 +243,7 @@ public PaymentComplementaryInformation5 setPmtTpInf(PaymentTypeInformation25 val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -250,7 +255,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation5 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -263,7 +268,7 @@ public PaymentComplementaryInformation5 setReqdExctnDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -275,7 +280,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation5 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -288,7 +293,7 @@ public PaymentComplementaryInformation5 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -300,7 +305,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation5 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation6.java
index 287e0a89d..e315cc215 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -70,10 +72,12 @@ public class PaymentComplementaryInformation6 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTimeChoice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -262,7 +266,7 @@ public PaymentComplementaryInformation6 setReqdExctnDt(DateAndDateTimeChoice val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -274,7 +278,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation6 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -287,7 +291,7 @@ public PaymentComplementaryInformation6 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -299,7 +303,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation6 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation7.java
index aa9c69b5b..9b618d920 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -74,10 +76,12 @@ public class PaymentComplementaryInformation7 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -274,7 +278,7 @@ public PaymentComplementaryInformation7 setReqdExctnDt(DateAndDateTime2Choice va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -286,7 +290,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation7 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -299,7 +303,7 @@ public PaymentComplementaryInformation7 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -311,7 +315,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation7 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation8.java
index 50fce3d6a..5bfec1b86 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -74,10 +76,12 @@ public class PaymentComplementaryInformation8 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -274,7 +278,7 @@ public PaymentComplementaryInformation8 setReqdExctnDt(DateAndDateTime2Choice va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -286,7 +290,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation8 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -299,7 +303,7 @@ public PaymentComplementaryInformation8 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -311,7 +315,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation8 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation9.java
index 3931e66e2..500c1cc38 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentComplementaryInformation9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -74,10 +76,12 @@ public class PaymentComplementaryInformation9 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -274,7 +278,7 @@ public PaymentComplementaryInformation9 setReqdExctnDt(DateAndDateTime2Choice va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -286,7 +290,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation9 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -299,7 +303,7 @@ public PaymentComplementaryInformation9 setReqdColltnDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -311,7 +315,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentComplementaryInformation9 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails5.java
index 38d57f264..6d28e86bd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentDetails5 {
protected PaymentType2Choice pmtTp;
@XmlElement(name = "PmtInstrRef")
protected String pmtInstrRef;
- @XmlElement(name = "IntrBkValDt")
+ @XmlElement(name = "IntrBkValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "RltdRef")
@@ -377,7 +380,7 @@ public PaymentDetails5 setPmtInstrRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -389,7 +392,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDetails5 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails6.java
index 8ca7949c9..6d56e8dfc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentDetails6 {
protected PaymentType2Choice pmtTp;
@XmlElement(name = "PmtInstrRef")
protected String pmtInstrRef;
- @XmlElement(name = "IntrBkValDt")
+ @XmlElement(name = "IntrBkValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "RltdRef")
@@ -376,7 +379,7 @@ public PaymentDetails6 setPmtInstrRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -388,7 +391,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDetails6 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails7.java
index e880e961a..57bc0f620 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentDetails7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentDetails7 {
protected PaymentType2Choice pmtTp;
@XmlElement(name = "PmtInstrRef")
protected String pmtInstrRef;
- @XmlElement(name = "IntrBkValDt")
+ @XmlElement(name = "IntrBkValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "RltdRef")
@@ -376,7 +379,7 @@ public PaymentDetails7 setPmtInstrRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -388,7 +391,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentDetails7 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction1.java
index 924be9e81..a26831771 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class PaymentInstruction1 {
protected Boolean gnrtdOrdr;
@XmlElement(name = "TxId")
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -410,7 +413,7 @@ public PaymentInstruction1 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -422,7 +425,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction13.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction13.java
index a4b356ab1..58b0545d1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction13.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class PaymentInstruction13 {
- @XmlElement(name = "ReqdExctnDtTm")
+ @XmlElement(name = "ReqdExctnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqdExctnDtTm;
@XmlElement(name = "PmtTp")
@@ -38,7 +41,7 @@ public class PaymentInstruction13 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDtTm() {
@@ -50,7 +53,7 @@ public XMLGregorianCalendar getReqdExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction13 setReqdExctnDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction26.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction26.java
index f05a5fe39..fd0d405f0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction26.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction26.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class PaymentInstruction26 {
protected Boolean gnrtdOrdr;
@XmlElement(name = "TxId")
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -410,7 +413,7 @@ public PaymentInstruction26 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -422,7 +425,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction26 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction3.java
index 2c5855041..32bdc9b33 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class PaymentInstruction3 {
- @XmlElement(name = "ReqdExctnDtTm")
+ @XmlElement(name = "ReqdExctnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqdExctnDtTm;
@XmlElement(name = "PmtTp")
@@ -38,7 +41,7 @@ public class PaymentInstruction3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDtTm() {
@@ -50,7 +53,7 @@ public XMLGregorianCalendar getReqdExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction3 setReqdExctnDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction32.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction32.java
index d89d21d6a..71b7276a3 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction32.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction32.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class PaymentInstruction32 {
protected Boolean gnrtdOrdr;
@XmlElement(name = "TxId")
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -410,7 +413,7 @@ public PaymentInstruction32 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -422,7 +425,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction32 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract.java
index db2a0c41a..02201b8f4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class PaymentInstructionExtract {
protected String assgneInstrId;
@XmlElement(name = "CcyAmt")
protected CurrencyAndAmount ccyAmt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valDt;
@@ -118,7 +121,7 @@ public PaymentInstructionExtract setCcyAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionExtract setValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract2.java
index 6a342d19b..97e214262 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionExtract2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +40,12 @@ public class PaymentInstructionExtract2 {
protected CurrencyAndAmount instdAmt;
@XmlElement(name = "IntrBkSttlmAmt")
protected CurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@@ -150,7 +154,7 @@ public PaymentInstructionExtract2 setIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -162,7 +166,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionExtract2 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -175,7 +179,7 @@ public PaymentInstructionExtract2 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -187,7 +191,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionExtract2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation.java
index 5f18364eb..2869bdd54 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionInformation.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class PaymentInstructionInformation {
- @XmlElement(name = "ReqdExctnDtTm")
+ @XmlElement(name = "ReqdExctnDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar reqdExctnDtTm;
@XmlElement(name = "PmtTp")
@@ -37,7 +40,7 @@ public class PaymentInstructionInformation {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDtTm() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getReqdExctnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionInformation setReqdExctnDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails2.java
index 1b1cc4503..4cc23e125 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class PaymentInstructionReferenceDetails2 {
@XmlElement(name = "PmtInstrRef", required = true)
protected String pmtInstrRef;
- @XmlElement(name = "IntrBkValDt", required = true)
+ @XmlElement(name = "IntrBkValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "InstgAgtId", required = true)
@@ -65,7 +68,7 @@ public PaymentInstructionReferenceDetails2 setPmtInstrRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionReferenceDetails2 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails3.java
index ba4e23d95..594445ad2 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class PaymentInstructionReferenceDetails3 {
protected String pmtInstrRef;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected BigDecimal intrBkSttlmAmt;
- @XmlElement(name = "IntrBkValDt", required = true)
+ @XmlElement(name = "IntrBkValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "PmtMtd")
@@ -103,7 +106,7 @@ public PaymentInstructionReferenceDetails3 setIntrBkSttlmAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -115,7 +118,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionReferenceDetails3 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails4.java
index 11c16e84a..5bd4e04b4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstructionReferenceDetails4.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class PaymentInstructionReferenceDetails4 {
protected String pmtInstrRef;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected BigDecimal intrBkSttlmAmt;
- @XmlElement(name = "IntrBkValDt", required = true)
+ @XmlElement(name = "IntrBkValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkValDt;
@XmlElement(name = "PmtMtd")
@@ -106,7 +109,7 @@ public PaymentInstructionReferenceDetails4 setIntrBkSttlmAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkValDt() {
@@ -118,7 +121,7 @@ public XMLGregorianCalendar getIntrBkValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstructionReferenceDetails4 setIntrBkValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch3.java
index fd485d410..e9187fea9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -76,7 +78,8 @@ public class PaymentSearch3 {
protected List pmtTp;
@XmlElement(name = "PmtInstrRef")
protected List pmtInstrRef;
- @XmlElement(name = "IntrBkValDt")
+ @XmlElement(name = "IntrBkValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List intrBkValDt;
@XmlElement(name = "RltdRef")
@@ -533,7 +536,7 @@ public List getPmtInstrRef() {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch4.java
index aa8b214a6..fa932e8a5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -76,7 +78,8 @@ public class PaymentSearch4 {
protected List instr;
@XmlElement(name = "TxId")
protected List txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -533,7 +536,7 @@ public List getTxId() {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch5.java
index a79244e1a..097769de1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -76,7 +78,8 @@ public class PaymentSearch5 {
protected List instr;
@XmlElement(name = "TxId")
protected List txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -533,7 +536,7 @@ public List getTxId() {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch7.java
index 58ef580af..c00966c32 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -76,7 +78,8 @@ public class PaymentSearch7 {
protected List instr;
@XmlElement(name = "TxId")
protected List txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -533,7 +536,7 @@ public List getTxId() {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch8.java
index 1f7012a95..d52194f7b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentSearch8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -76,7 +78,8 @@ public class PaymentSearch8 {
protected List instr;
@XmlElement(name = "TxId")
protected List txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -533,7 +536,7 @@ public List getTxId() {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction102.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction102.java
index 919f064de..025550995 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction102.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction102.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction102 {
protected ResolutionData1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -386,7 +389,7 @@ public PaymentTransaction102 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -398,7 +401,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction102 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction103.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction103.java
index 648267479..b494daeac 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction103.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction103.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction103 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -296,7 +299,7 @@ public PaymentTransaction103 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction103 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction106.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction106.java
index c56c8f2be..2726a4c28 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction106.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction106.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class PaymentTransaction106 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -303,7 +306,7 @@ public PaymentTransaction106 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -315,7 +318,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction106 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction107.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction107.java
index 2061f9f0e..429d84167 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction107.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction107.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class PaymentTransaction107 {
protected ResolutionData1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -385,7 +388,7 @@ public PaymentTransaction107 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -397,7 +400,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction107 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction109.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction109.java
index 8ee7358eb..aa536c78c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction109.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction109.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class PaymentTransaction109 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -241,7 +244,7 @@ public PaymentTransaction109 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -253,7 +256,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction109 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction116.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction116.java
index 9f06c1141..a8637766b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction116.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction116.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class PaymentTransaction116 {
protected ResolutionData2 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -385,7 +388,7 @@ public PaymentTransaction116 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -397,7 +400,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction116 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction120.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction120.java
index 33f5923b5..1bcc60f68 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction120.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction120.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class PaymentTransaction120 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -303,7 +306,7 @@ public PaymentTransaction120 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -315,7 +318,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction120 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction122.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction122.java
index 440cd4d35..720fd4012 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction122.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction122.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction122 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -296,7 +299,7 @@ public PaymentTransaction122 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction122 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction124.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction124.java
index 570f8553a..c1c344ecd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction124.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction124.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class PaymentTransaction124 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -241,7 +244,7 @@ public PaymentTransaction124 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -253,7 +256,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction124 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction127.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction127.java
index a53d8b3bc..ab1f2612c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction127.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction127.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction127 {
protected ResolutionData2 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -386,7 +389,7 @@ public PaymentTransaction127 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -398,7 +401,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction127 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction132.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction132.java
index ab244e6d2..99f114c62 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction132.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction132.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class PaymentTransaction132 {
protected ResolutionData3 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -385,7 +388,7 @@ public PaymentTransaction132 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -397,7 +400,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction132 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction137.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction137.java
index 372fc0f10..e59f6f836 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction137.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction137.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class PaymentTransaction137 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -303,7 +306,7 @@ public PaymentTransaction137 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -315,7 +318,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction137 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction138.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction138.java
index 281072918..531301ab4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction138.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction138.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction138 {
protected ResolutionData3 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -386,7 +389,7 @@ public PaymentTransaction138 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -398,7 +401,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction138 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction139.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction139.java
index ab4e6cafa..2f4f4637f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction139.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction139.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction139 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -296,7 +299,7 @@ public PaymentTransaction139 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction139 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction140.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction140.java
index 8d267bb33..25a67eb6d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction140.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction140.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class PaymentTransaction140 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -241,7 +244,7 @@ public PaymentTransaction140 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -253,7 +256,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction140 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction37.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction37.java
index 94461fe0d..444f024fc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction37.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction37.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class PaymentTransaction37 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -186,7 +190,7 @@ public PaymentTransaction37 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -198,7 +202,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction37 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -211,7 +215,7 @@ public PaymentTransaction37 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -223,7 +227,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction37 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction38.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction38.java
index 450a85d19..b5e62b749 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction38.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction38.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransaction38 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -272,7 +275,7 @@ public PaymentTransaction38 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -284,7 +287,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction38 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction39.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction39.java
index 487717b1e..0acbd9b3f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction39.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction39.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class PaymentTransaction39 {
protected List cxlStsRsnInf;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -244,7 +248,7 @@ public PaymentTransaction39 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -256,7 +260,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction39 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -269,7 +273,7 @@ public PaymentTransaction39 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -281,7 +285,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction39 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction40.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction40.java
index cbdab692f..6fe67da82 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction40.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction40.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransaction40 {
protected ResolutionInformation1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransaction40 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction40 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction47.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction47.java
index 0c4e8a295..f29e4b81e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction47.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction47.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class PaymentTransaction47 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -189,7 +193,7 @@ public PaymentTransaction47 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -201,7 +205,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction47 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -214,7 +218,7 @@ public PaymentTransaction47 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -226,7 +230,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction47 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction48.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction48.java
index 27827d779..cb07a7f0d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction48.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction48.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction48 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -275,7 +278,7 @@ public PaymentTransaction48 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction48 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction53.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction53.java
index 650240353..81018281d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction53.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction53.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransaction53 {
protected ResolutionInformation1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransaction53 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction53 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction54.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction54.java
index 24090076d..6ca3fea3a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction54.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction54.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class PaymentTransaction54 {
protected List cxlStsRsnInf;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -244,7 +248,7 @@ public PaymentTransaction54 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -256,7 +260,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction54 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -269,7 +273,7 @@ public PaymentTransaction54 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -281,7 +285,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction54 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction55.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction55.java
index 2d263489a..e0203f0a4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction55.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction55.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction55 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -275,7 +278,7 @@ public PaymentTransaction55 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction55 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction58.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction58.java
index 8724e2f8e..53bf15461 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction58.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction58.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class PaymentTransaction58 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -189,7 +193,7 @@ public PaymentTransaction58 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -201,7 +205,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction58 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -214,7 +218,7 @@ public PaymentTransaction58 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -226,7 +230,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction58 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction61.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction61.java
index 971ddbfdc..46cbadb1a 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction61.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction61.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class PaymentTransaction61 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -189,7 +193,7 @@ public PaymentTransaction61 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -201,7 +205,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction61 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -214,7 +218,7 @@ public PaymentTransaction61 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -226,7 +230,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction61 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction62.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction62.java
index 6be1751d5..3ea26bce5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction62.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction62.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction62 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -275,7 +278,7 @@ public PaymentTransaction62 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction62 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction66.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction66.java
index 2528242db..e3cb3e462 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction66.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction66.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class PaymentTransaction66 {
protected List cxlStsRsnInf;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -244,7 +248,7 @@ public PaymentTransaction66 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -256,7 +260,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction66 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -269,7 +273,7 @@ public PaymentTransaction66 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -281,7 +285,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction66 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction67.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction67.java
index d41513105..327fbd4b4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction67.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction67.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransaction67 {
protected ResolutionInformation1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransaction67 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction67 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction74.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction74.java
index a7a22cc4c..c54bb62fd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction74.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction74.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class PaymentTransaction74 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTimeChoice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -213,7 +216,7 @@ public PaymentTransaction74 setOrgnlReqdExctnDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction74 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction75.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction75.java
index 14c70f622..9901fb83f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction75.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction75.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction75 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -275,7 +278,7 @@ public PaymentTransaction75 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction75 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction78.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction78.java
index ec3d6aa65..04f06b294 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction78.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction78.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class PaymentTransaction78 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTimeChoice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -268,7 +271,7 @@ public PaymentTransaction78 setOrgnlReqdExctnDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -280,7 +283,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction78 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction79.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction79.java
index 7281bd658..e79e80fa0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction79.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction79.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransaction79 {
protected ResolutionInformation1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransaction79 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction79 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction84.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction84.java
index 6a5abeb2d..dcc41e8c0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction84.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction84.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,7 +55,8 @@ public class PaymentTransaction84 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -268,7 +271,7 @@ public PaymentTransaction84 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -280,7 +283,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction84 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction85.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction85.java
index d066f0437..954c71956 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction85.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction85.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransaction85 {
protected ResolutionInformation2 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransaction85 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction85 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction89.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction89.java
index 8566a48a6..b8e9fcfaa 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction89.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction89.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class PaymentTransaction89 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -275,7 +278,7 @@ public PaymentTransaction89 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -287,7 +290,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction89 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction90.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction90.java
index c0b6457be..a648f61df 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction90.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction90.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction90 {
protected ResolutionInformation2 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -357,7 +360,7 @@ public PaymentTransaction90 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -369,7 +372,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction90 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction95.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction95.java
index 9781c4ac9..c513d6b93 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction95.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction95.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class PaymentTransaction95 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "OrgnlReqdExctnDt")
protected DateAndDateTime2Choice orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -213,7 +216,7 @@ public PaymentTransaction95 setOrgnlReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction95 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation30.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation30.java
index 6996b0a7c..1f85bcc00 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation30.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation30.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class PaymentTransactionInformation30 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "CxlRsnInf")
@@ -186,7 +190,7 @@ public PaymentTransactionInformation30 setOrgnlInstdAmt(ActiveOrHistoricCurrency
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -198,7 +202,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation30 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -211,7 +215,7 @@ public PaymentTransactionInformation30 setOrgnlReqdExctnDt(XMLGregorianCalendar
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -223,7 +227,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation30 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation31.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation31.java
index c08736ce8..a50db15ad 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation31.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation31.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransactionInformation31 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -272,7 +275,7 @@ public PaymentTransactionInformation31 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -284,7 +287,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation31 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation32.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation32.java
index 70334273f..a38bac1dc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation32.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation32.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class PaymentTransactionInformation32 {
protected List cxlStsRsnInf;
@XmlElement(name = "OrgnlInstdAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "OrgnlReqdExctnDt")
+ @XmlElement(name = "OrgnlReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdExctnDt;
- @XmlElement(name = "OrgnlReqdColltnDt")
+ @XmlElement(name = "OrgnlReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlReqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -244,7 +248,7 @@ public PaymentTransactionInformation32 setOrgnlInstdAmt(ActiveOrHistoricCurrency
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdExctnDt() {
@@ -256,7 +260,7 @@ public XMLGregorianCalendar getOrgnlReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation32 setOrgnlReqdExctnDt(XMLGregorianCalendar value) {
@@ -269,7 +273,7 @@ public PaymentTransactionInformation32 setOrgnlReqdExctnDt(XMLGregorianCalendar
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlReqdColltnDt() {
@@ -281,7 +285,7 @@ public XMLGregorianCalendar getOrgnlReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation32 setOrgnlReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation33.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation33.java
index 14c3ea175..647ec60bc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation33.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation33.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class PaymentTransactionInformation33 {
protected ResolutionInformation1 rsltnRltdInf;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "Assgnr")
@@ -358,7 +361,7 @@ public PaymentTransactionInformation33 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -370,7 +373,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation33 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProprietaryDate1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProprietaryDate1.java
index 8cdc51d63..fc9c393f7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProprietaryDate1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProprietaryDate1.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +32,12 @@ public class ProprietaryDate1 {
@XmlElement(name = "Tp", required = true)
protected String tp;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@@ -66,7 +71,7 @@ public ProprietaryDate1 setTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -78,7 +83,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProprietaryDate1 setDt(XMLGregorianCalendar value) {
@@ -91,7 +96,7 @@ public ProprietaryDate1 setDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProprietaryDate1 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData1.java
index 2fe521039..53e51e364 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData1.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,10 +37,12 @@ public class ReportData1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "DtAndTmStmp", required = true)
+ @XmlElement(name = "DtAndTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTmStmp;
@XmlElement(name = "Tp", required = true)
@@ -78,7 +83,7 @@ public ReportData1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -90,7 +95,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData1 setValDt(XMLGregorianCalendar value) {
@@ -103,7 +108,7 @@ public ReportData1 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTmStmp() {
@@ -115,7 +120,7 @@ public XMLGregorianCalendar getDtAndTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData1 setDtAndTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData2.java
index 134f521e8..14030f24e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData2.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,10 +33,12 @@ public class ReportData2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "DtAndTmStmp", required = true)
+ @XmlElement(name = "DtAndTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTmStmp;
@XmlElement(name = "Tp", required = true)
@@ -70,7 +75,7 @@ public ReportData2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -82,7 +87,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData2 setValDt(XMLGregorianCalendar value) {
@@ -95,7 +100,7 @@ public ReportData2 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTmStmp() {
@@ -107,7 +112,7 @@ public XMLGregorianCalendar getDtAndTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData2 setDtAndTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData3.java
index b58940665..fa18a0c5b 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData3.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +35,12 @@ public class ReportData3 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "DtAndTmStmp", required = true)
+ @XmlElement(name = "DtAndTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTmStmp;
@XmlElement(name = "Tp", required = true)
@@ -74,7 +79,7 @@ public ReportData3 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -86,7 +91,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData3 setValDt(XMLGregorianCalendar value) {
@@ -99,7 +104,7 @@ public ReportData3 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTmStmp() {
@@ -111,7 +116,7 @@ public XMLGregorianCalendar getDtAndTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData3 setDtAndTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData4.java
index ff66d5b8d..d2e62d9d6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData4.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +35,12 @@ public class ReportData4 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "DtAndTmStmp", required = true)
+ @XmlElement(name = "DtAndTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTmStmp;
@XmlElement(name = "Tp", required = true)
@@ -76,7 +81,7 @@ public ReportData4 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -88,7 +93,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData4 setValDt(XMLGregorianCalendar value) {
@@ -101,7 +106,7 @@ public ReportData4 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTmStmp() {
@@ -113,7 +118,7 @@ public XMLGregorianCalendar getDtAndTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData4 setDtAndTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData5.java
index de01b5198..fa7349429 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportData5.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,10 +38,12 @@ public class ReportData5 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
- @XmlElement(name = "DtAndTmStmp", required = true)
+ @XmlElement(name = "DtAndTmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTmStmp;
@XmlElement(name = "Tp", required = true)
@@ -81,7 +86,7 @@ public ReportData5 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -93,7 +98,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData5 setValDt(XMLGregorianCalendar value) {
@@ -106,7 +111,7 @@ public ReportData5 setValDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTmStmp() {
@@ -118,7 +123,7 @@ public XMLGregorianCalendar getDtAndTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportData5 setDtAndTmStmp(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader.java
index b7c98e6a4..e74a31bb8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class ReportHeader {
protected String fr;
@XmlElement(name = "To", required = true)
protected String to;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public ReportHeader setTo(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportHeader setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader2.java
index a43ac5291..22c1d6d75 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class ReportHeader2 {
protected Party7Choice fr;
@XmlElement(name = "To", required = true)
protected Party7Choice to;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public ReportHeader2 setTo(Party7Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportHeader2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader4.java
index ec5dce348..51b61fbb6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class ReportHeader4 {
protected Party12Choice fr;
@XmlElement(name = "To", required = true)
protected Party12Choice to;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public ReportHeader4 setTo(Party12Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportHeader4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader5.java
index 5c254e82e..80f7d9941 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportHeader5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class ReportHeader5 {
protected Party40Choice fr;
@XmlElement(name = "To", required = true)
protected Party40Choice to;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -118,7 +121,7 @@ public ReportHeader5 setTo(Party40Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportHeader5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification.java
index f4a813d0a..9fc579ca8 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -53,10 +55,12 @@ public class RequestedModification {
@XmlElement(name = "InstrCd")
@XmlSchemaType(name = "string")
protected Instruction1Code instrCd;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrBkSttldAmt")
@@ -169,7 +173,7 @@ public RequestedModification setInstrCd(Instruction1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -181,7 +185,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification setReqdExctnDt(XMLGregorianCalendar value) {
@@ -194,7 +198,7 @@ public RequestedModification setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -206,7 +210,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification setValDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification10.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification10.java
index f73fb8c1c..93ec80556 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification10.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification10.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,10 +64,12 @@ public class RequestedModification10 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -238,7 +242,7 @@ public RequestedModification10 setReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -250,7 +254,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification10 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -263,7 +267,7 @@ public RequestedModification10 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -275,7 +279,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification10 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification2.java
index 393afb62c..212170235 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,13 +60,16 @@ public class RequestedModification2 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation22 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -208,7 +213,7 @@ public RequestedModification2 setPmtTpInf(PaymentTypeInformation22 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification2 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -233,7 +238,7 @@ public RequestedModification2 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification2 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -258,7 +263,7 @@ public RequestedModification2 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -270,7 +275,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification3.java
index a50aba30e..71a47f9b9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,13 +60,16 @@ public class RequestedModification3 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -208,7 +213,7 @@ public RequestedModification3 setPmtTpInf(PaymentTypeInformation25 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification3 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -233,7 +238,7 @@ public RequestedModification3 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification3 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -258,7 +263,7 @@ public RequestedModification3 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -270,7 +275,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification4.java
index 8535f29f6..bae6ee8a7 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,13 +60,16 @@ public class RequestedModification4 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -208,7 +213,7 @@ public RequestedModification4 setPmtTpInf(PaymentTypeInformation25 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification4 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -233,7 +238,7 @@ public RequestedModification4 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification4 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -258,7 +263,7 @@ public RequestedModification4 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -270,7 +275,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification4 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification5.java
index ec5a050dc..790e8b7ab 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,13 +60,16 @@ public class RequestedModification5 {
protected String txId;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation25 pmtTpInf;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -208,7 +213,7 @@ public RequestedModification5 setPmtTpInf(PaymentTypeInformation25 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification5 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -233,7 +238,7 @@ public RequestedModification5 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +250,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification5 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -258,7 +263,7 @@ public RequestedModification5 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -270,7 +275,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification5 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification6.java
index 0ea172c95..7103446f6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,10 +62,12 @@ public class RequestedModification6 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTimeChoice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -232,7 +236,7 @@ public RequestedModification6 setReqdExctnDt(DateAndDateTimeChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -244,7 +248,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification6 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -257,7 +261,7 @@ public RequestedModification6 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -269,7 +273,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification6 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification7.java
index 6d2194379..201dc0cf5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,10 +62,12 @@ public class RequestedModification7 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "Amt")
@@ -232,7 +236,7 @@ public RequestedModification7 setReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -244,7 +248,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification7 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -257,7 +261,7 @@ public RequestedModification7 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -269,7 +273,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification7 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification8.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification8.java
index efbfc8edc..371e87305 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification8.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,10 +63,12 @@ public class RequestedModification8 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -235,7 +239,7 @@ public RequestedModification8 setReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -247,7 +251,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification8 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -260,7 +264,7 @@ public RequestedModification8 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -272,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification8 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification9.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification9.java
index 791acccf9..19247f5b9 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification9.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestedModification9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,10 +63,12 @@ public class RequestedModification9 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -235,7 +239,7 @@ public RequestedModification9 setReqdExctnDt(DateAndDateTime2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -247,7 +251,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification9 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -260,7 +264,7 @@ public RequestedModification9 setReqdColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -272,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RequestedModification9 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData1.java
index d6a9671b5..d979f5795 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class ResolutionData1 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -158,7 +161,7 @@ public ResolutionData1 setIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResolutionData1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData2.java
index da6efa917..fe7c62924 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class ResolutionData2 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -158,7 +161,7 @@ public ResolutionData2 setIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResolutionData2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData3.java
index 5c85b3f18..4ee869811 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionData3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class ResolutionData3 {
protected String uetr;
@XmlElement(name = "IntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -158,7 +161,7 @@ public ResolutionData3 setIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -170,7 +173,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResolutionData3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation1.java
index a2dbead11..67ae9a55f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ResolutionInformation1 {
@XmlElement(name = "IntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -66,7 +69,7 @@ public ResolutionInformation1 setIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -78,7 +81,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResolutionInformation1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation2.java
index 65c3fd70c..244ea9a7e 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ResolutionInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class ResolutionInformation2 {
@XmlElement(name = "IntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -74,7 +77,7 @@ public ResolutionInformation2 setIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAmoun
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ResolutionInformation2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReturnInformation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReturnInformation1.java
index a6ac1d766..00fac44eb 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReturnInformation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReturnInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ReturnInformation1 {
@XmlElement(name = "RtrdIntrBkSttlmAmt")
protected CurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "ClrChanl")
@@ -66,7 +69,7 @@ public ReturnInformation1 setRtrdIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -78,7 +81,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReturnInformation1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ServicePaymentMethod1Code.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ServicePaymentMethod1Code.java
index 0966252b6..956b20abc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ServicePaymentMethod1Code.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ServicePaymentMethod1Code.java
@@ -30,7 +30,7 @@ public enum ServicePaymentMethod1Code {
/**
- * Allows the bank to offset a service charge with interest earned on the deposit account balance. The actual charges arising from balance compensable services are always calculated and charged at month end. Used in the USA.
+ * Allows the bank to offset a service charge with interest earned on the deposit account balance. The actual charges arising from balance compensable services are always calculated and charged at month end. Used in the USA.
*
*/
BCMP,
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification2.java
index 69c144bc4..17ce2fb0d 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ShortPaymentIdentification2 {
@XmlElement(name = "TxId", required = true)
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstgAgt", required = true)
@@ -65,7 +68,7 @@ public ShortPaymentIdentification2 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShortPaymentIdentification2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation2.java
index f2e3703e4..2e5e11611 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class StructuredRemittanceInformation2 {
@XmlElement(name = "RfrdDocTp")
@XmlSchemaType(name = "string")
protected DocumentType1Code rfrdDocTp;
- @XmlElement(name = "RfrdDocRltdDt")
+ @XmlElement(name = "RfrdDocRltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rfrdDocRltdDt;
@XmlElement(name = "RfrdDocAmt")
@@ -80,7 +83,7 @@ public StructuredRemittanceInformation2 setRfrdDocTp(DocumentType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRfrdDocRltdDt() {
@@ -92,7 +95,7 @@ public XMLGregorianCalendar getRfrdDocRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StructuredRemittanceInformation2 setRfrdDocRltdDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType1Code.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType1Code.java
index 8670cf9cf..010f7ede2 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType1Code.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType1Code.java
@@ -159,19 +159,19 @@ public enum SystemBalanceType1Code {
EAST,
/**
- * Balance representing the sum of entries as a result of payments processing. Entries relating to fees, interest, or other movements not a result of payments sent or received by the account owner are not included.
+ * Balance representing the sum of entries as a result of payments processing. Entries relating to fees, interest, or other movements not a result of payments sent or received by the account owner are not included.
*
*/
PYMT,
/**
- * Balance representing the regulatory reserve that a financial institution must have with the account servicing institution, such as the minimum credit balance a financial institution is to keep with its Central Bank for mandatory reserve purposes. In some countries, a blocked balance is known as a 'reserve' balance.
+ * Balance representing the regulatory reserve that a financial institution must have with the account servicing institution, such as the minimum credit balance a financial institution is to keep with its Central Bank for mandatory reserve purposes. In some countries, a blocked balance is known as a 'reserve' balance.
*
*/
BLCK,
/**
- * Balance, composed of booked entries and pending items known at the time of calculation, which projects the end of day balance if everything is booked on the account and no other entry is posted.
+ * Balance, composed of booked entries and pending items known at the time of calculation , which projects the end of day balance if everything is booked on the account and no other entry is posted.
*
*/
XPCD,
@@ -226,7 +226,7 @@ public enum SystemBalanceType1Code {
NOTE,
/**
- * Balance of the account identified (as opposed to Master Balance).
+ * Balance of the account identified (as opposed to Master Balance)
*
*/
SELF,
@@ -238,7 +238,7 @@ public enum SystemBalanceType1Code {
MSTR,
/**
- * Balance representing the forecast of total of all cash legs for trades that are ready to settle via a a central securities depository. Amounts shown are still subject to processing of the securities settlement.
+ * Balance representing the forecast of total of all cash legs for trades that are ready to settle via a a central securities depository. Amounts shown are still subject to processing of the securities settlement.
*
*/
FSET,
@@ -281,7 +281,7 @@ public enum SystemBalanceType1Code {
FUND,
/**
- * Balance representing the fictive forecast of automated direct debits or payment based on standing arrangements between a central securities depository and the user.
+ * Balance representing the fictive forecast of automated direct debits or payment based on standing arrangements between the a central securities depository and the user.
*
* Usage: Pay-Ins and Pay-Outs can be different based on individual payment instructions or available funds.
*
@@ -367,13 +367,13 @@ public enum SystemBalanceType1Code {
SCOL,
/**
- * Balance representing the cash-equivalent resulting from evaluation of incoming securities, qualified to serve as collateral and actually used as collateral, which have been settled during the settlement process.
+ * Balance representing the cash-equivalent resulting from evaluation of incoming securities, qualified to serve as collateral and actually used as collateral, which have been settled during the settlement process.
*
*/
SCOU,
/**
- * Balance representing the actual total of all asset servicing transactions such as dividends, income corporate actions equivalents, tax returns, redemptions, etc.
+ * Balance representing the actual total of all asset servicing transactions such as dividends, income corporate actions equivalents, tax returns, redemptions, etc.
*
*/
CUSA,
@@ -391,13 +391,13 @@ public enum SystemBalanceType1Code {
XCHN,
/**
- * Balance representing the cash equivalent of all settled securities transactions.
+ * Balance representing the cash equivalent of all settled securities transactions
*
*/
DSET,
/**
- * Balance representing the cash equivalent of transactions with a lack of holdings.
+ * Balance representing the cash equivalent of transactions with a lack of holdings.
*
*/
LACK,
@@ -463,7 +463,7 @@ public enum SystemBalanceType1Code {
BSCC,
/**
- * Balance represents the settlement account processor queue amount.
+ * Balance represents the settlement account processor queue amount
*
*/
SAPP,
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent1.java
index d19147742..d8a2f03cc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class SystemEvent1 {
@XmlElement(name = "Tp", required = true)
protected SystemEventType1Choice tp;
- @XmlElement(name = "SchdldTm", required = true)
+ @XmlElement(name = "SchdldTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar schdldTm;
- @XmlElement(name = "FctvTm")
+ @XmlElement(name = "FctvTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar fctvTm;
@@ -66,7 +70,7 @@ public SystemEvent1 setTp(SystemEventType1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSchdldTm() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getSchdldTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent1 setSchdldTm(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public SystemEvent1 setSchdldTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFctvTm() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getFctvTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent1 setFctvTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent2.java
index 95e210a55..af776a9fd 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,16 +33,20 @@ public class SystemEvent2 {
@XmlElement(name = "Tp", required = true)
protected SystemEventType2Choice tp;
- @XmlElement(name = "SchdldTm", required = true)
+ @XmlElement(name = "SchdldTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar schdldTm;
- @XmlElement(name = "FctvTm")
+ @XmlElement(name = "FctvTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar fctvTm;
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@@ -74,7 +80,7 @@ public SystemEvent2 setTp(SystemEventType2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSchdldTm() {
@@ -86,7 +92,7 @@ public XMLGregorianCalendar getSchdldTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent2 setSchdldTm(XMLGregorianCalendar value) {
@@ -99,7 +105,7 @@ public SystemEvent2 setSchdldTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFctvTm() {
@@ -111,7 +117,7 @@ public XMLGregorianCalendar getFctvTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent2 setFctvTm(XMLGregorianCalendar value) {
@@ -124,7 +130,7 @@ public SystemEvent2 setFctvTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -136,7 +142,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent2 setStartTm(XMLGregorianCalendar value) {
@@ -149,7 +155,7 @@ public SystemEvent2 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -161,7 +167,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent2 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriod1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriod1.java
index 3f62ae486..070f74487 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriod1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriod1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class TimePeriod1 {
- @XmlElement(name = "FrTm", required = true)
+ @XmlElement(name = "FrTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar frTm;
- @XmlElement(name = "ToTm", required = true)
+ @XmlElement(name = "ToTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar toTm;
@@ -38,7 +42,7 @@ public class TimePeriod1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriod1 setFrTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public TimePeriod1 setFrTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriod1 setToTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails.java
index 3b5dbb425..6cfbc78e6 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class TimePeriodDetails {
- @XmlElement(name = "FrTm", required = true)
+ @XmlElement(name = "FrTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar frTm;
- @XmlElement(name = "ToTm", required = true)
+ @XmlElement(name = "ToTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar toTm;
@@ -38,7 +42,7 @@ public class TimePeriodDetails {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriodDetails setFrTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public TimePeriodDetails setFrTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriodDetails setToTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates1.java
index c76ebc046..c71cf92e2 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates1.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,22 +36,28 @@
})
public class TransactionDates1 {
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "TradDt")
+ @XmlElement(name = "TradDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
- @XmlElement(name = "TxDtTm")
+ @XmlElement(name = "TxDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar txDtTm;
@XmlElement(name = "Prtry")
@@ -59,7 +68,7 @@ public class TransactionDates1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -71,7 +80,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -84,7 +93,7 @@ public TransactionDates1 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -96,7 +105,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setTradDt(XMLGregorianCalendar value) {
@@ -109,7 +118,7 @@ public TransactionDates1 setTradDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -121,7 +130,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -134,7 +143,7 @@ public TransactionDates1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -146,7 +155,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setStartDt(XMLGregorianCalendar value) {
@@ -159,7 +168,7 @@ public TransactionDates1 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -171,7 +180,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setEndDt(XMLGregorianCalendar value) {
@@ -184,7 +193,7 @@ public TransactionDates1 setEndDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDtTm() {
@@ -196,7 +205,7 @@ public XMLGregorianCalendar getTxDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates1 setTxDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates3.java
index 5175cce4f..b6d8f4300 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates3.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,25 +37,32 @@
})
public class TransactionDates3 {
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "TradActvtyCtrctlSttlmDt")
+ @XmlElement(name = "TradActvtyCtrctlSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradActvtyCtrctlSttlmDt;
- @XmlElement(name = "TradDt")
+ @XmlElement(name = "TradDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
- @XmlElement(name = "TxDtTm")
+ @XmlElement(name = "TxDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar txDtTm;
@XmlElement(name = "Prtry")
@@ -63,7 +73,7 @@ public class TransactionDates3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -75,7 +85,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -88,7 +98,7 @@ public TransactionDates3 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradActvtyCtrctlSttlmDt() {
@@ -100,7 +110,7 @@ public XMLGregorianCalendar getTradActvtyCtrctlSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setTradActvtyCtrctlSttlmDt(XMLGregorianCalendar value) {
@@ -113,7 +123,7 @@ public TransactionDates3 setTradActvtyCtrctlSttlmDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -125,7 +135,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setTradDt(XMLGregorianCalendar value) {
@@ -138,7 +148,7 @@ public TransactionDates3 setTradDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -150,7 +160,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -163,7 +173,7 @@ public TransactionDates3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -175,7 +185,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setStartDt(XMLGregorianCalendar value) {
@@ -188,7 +198,7 @@ public TransactionDates3 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -200,7 +210,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setEndDt(XMLGregorianCalendar value) {
@@ -213,7 +223,7 @@ public TransactionDates3 setEndDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDtTm() {
@@ -225,7 +235,7 @@ public XMLGregorianCalendar getTxDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates3 setTxDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnableToApplyIncorrectInformation4Code.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnableToApplyIncorrectInformation4Code.java
index 2ab8d6e52..403002e4c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnableToApplyIncorrectInformation4Code.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnableToApplyIncorrectInformation4Code.java
@@ -70,7 +70,7 @@ public enum UnableToApplyIncorrectInformation4Code {
IN_01("IN01"),
/**
- * Payment type service level is incorrect (former IncorrectBankOperationCode).
+ * Payment type service level is incorrect (former IncorrectBankOperationCode)
*
*/
@XmlEnumValue("IN02")
@@ -182,7 +182,7 @@ public enum UnableToApplyIncorrectInformation4Code {
IN_17("IN17"),
/**
- * Instruction for next agent is incorrect (former IncorrectSenderToReceiverInformation).
+ * Instruction for next agent is incorrect (former IncorrectSenderToReceiverInformation)
*
*/
@XmlEnumValue("IN18")
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingGroupInformation1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingGroupInformation1.java
index 547a69d21..92592e19c 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingGroupInformation1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingGroupInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class UnderlyingGroupInformation1 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlMsgDlvryChanl")
@@ -93,7 +96,7 @@ public UnderlyingGroupInformation1 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -105,7 +108,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingGroupInformation1 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction1.java
index 66919958d..047c44685 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class UnderlyingPaymentInstruction1 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -178,7 +182,7 @@ public UnderlyingPaymentInstruction1 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAn
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -190,7 +194,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction1 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -203,7 +207,7 @@ public UnderlyingPaymentInstruction1 setReqdExctnDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -215,7 +219,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction1 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction2.java
index fb29bf160..fa665b7fe 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class UnderlyingPaymentInstruction2 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -178,7 +182,7 @@ public UnderlyingPaymentInstruction2 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAn
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -190,7 +194,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction2 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -203,7 +207,7 @@ public UnderlyingPaymentInstruction2 setReqdExctnDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -215,7 +219,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction2 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction3.java
index 1b8cd63d2..fc0a6a3e1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class UnderlyingPaymentInstruction3 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTimeChoice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@@ -202,7 +205,7 @@ public UnderlyingPaymentInstruction3 setReqdExctnDt(DateAndDateTimeChoice value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction3 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction4.java
index 39007770a..3f9f2e0e5 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class UnderlyingPaymentInstruction4 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -205,7 +208,7 @@ public UnderlyingPaymentInstruction4 setReqdExctnDt(DateAndDateTime2Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction4 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction5.java
index 427809502..3f19771cc 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class UnderlyingPaymentInstruction5 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -233,7 +236,7 @@ public UnderlyingPaymentInstruction5 setReqdExctnDt(DateAndDateTime2Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +248,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction5 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction6.java
index 052ddb743..6ed1edad1 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class UnderlyingPaymentInstruction6 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -233,7 +236,7 @@ public UnderlyingPaymentInstruction6 setReqdExctnDt(DateAndDateTime2Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +248,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction6 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction7.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction7.java
index d7571ca7b..2274a3013 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction7.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentInstruction7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class UnderlyingPaymentInstruction7 {
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
@@ -233,7 +236,7 @@ public UnderlyingPaymentInstruction7 setReqdExctnDt(DateAndDateTime2Choice value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -245,7 +248,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentInstruction7 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction1.java
index 96d264c1f..a78b85fc4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class UnderlyingPaymentTransaction1 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@@ -174,7 +177,7 @@ public UnderlyingPaymentTransaction1 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -186,7 +189,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction1 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction2.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction2.java
index 6da57d230..dd7ae9f22 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction2.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class UnderlyingPaymentTransaction2 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@@ -174,7 +177,7 @@ public UnderlyingPaymentTransaction2 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -186,7 +189,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction2 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction3.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction3.java
index 75ead063f..940c6135f 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction3.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class UnderlyingPaymentTransaction3 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "OrgnlTxRef")
@@ -177,7 +180,7 @@ public UnderlyingPaymentTransaction3 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -189,7 +192,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction3 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction4.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction4.java
index ce5725b45..dbbc7c3b0 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction4.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class UnderlyingPaymentTransaction4 {
protected String orgnlUETR;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "OrgnlTxRef")
@@ -205,7 +208,7 @@ public UnderlyingPaymentTransaction4 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction4 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction5.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction5.java
index 886bfad27..fc867abe4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction5.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class UnderlyingPaymentTransaction5 {
protected String orgnlUETR;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "OrgnlTxRef")
@@ -205,7 +208,7 @@ public UnderlyingPaymentTransaction5 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction5 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction6.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction6.java
index 34b9fd225..5df297856 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction6.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingPaymentTransaction6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class UnderlyingPaymentTransaction6 {
protected String orgnlUETR;
@XmlElement(name = "OrgnlIntrBkSttlmAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true)
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "OrgnlTxRef")
@@ -205,7 +208,7 @@ public UnderlyingPaymentTransaction6 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingPaymentTransaction6 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDateTime1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDateTime1.java
index a7ca77dca..3295a29f4 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDateTime1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDateTime1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class UpdateLogDateTime1 {
- @XmlElement(name = "Od", required = true)
+ @XmlElement(name = "Od", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar od;
- @XmlElement(name = "New", required = true)
+ @XmlElement(name = "New", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar _new;
@@ -38,7 +42,7 @@ public class UpdateLogDateTime1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOd() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getOd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogDateTime1 setOd(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public UpdateLogDateTime1 setOd(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNew() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getNew() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogDateTime1 setNew(XMLGregorianCalendar value) {
diff --git a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogTime1.java b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogTime1.java
index 91bdb3985..af9e8b381 100644
--- a/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogTime1.java
+++ b/model-camt-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogTime1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class UpdateLogTime1 {
- @XmlElement(name = "Od", required = true)
+ @XmlElement(name = "Od", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar od;
- @XmlElement(name = "New", required = true)
+ @XmlElement(name = "New", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar _new;
@@ -38,7 +42,7 @@ public class UpdateLogTime1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOd() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getOd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogTime1 setOd(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public UpdateLogTime1 setOd(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNew() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getNew() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogTime1 setNew(XMLGregorianCalendar value) {
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100101.java
index 25c8c3b0d..ced0008fa 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100101 parse(String xml) {
- return ((MxCatm00100101) MxReadImpl.parse(MxCatm00100101 .class, xml, _classes));
+ return ((MxCatm00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100102.java
index 7714397d7..7d6051b16 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100102 parse(String xml) {
- return ((MxCatm00100102) MxReadImpl.parse(MxCatm00100102 .class, xml, _classes));
+ return ((MxCatm00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100103.java
index b8dcd61ca..be9466226 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100103 parse(String xml) {
- return ((MxCatm00100103) MxReadImpl.parse(MxCatm00100103 .class, xml, _classes));
+ return ((MxCatm00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100104.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100104.java
index 544635aab..dc82c5e23 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100104.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100104 parse(String xml) {
- return ((MxCatm00100104) MxReadImpl.parse(MxCatm00100104 .class, xml, _classes));
+ return ((MxCatm00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100105.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100105.java
index 2963516c4..b8c98718c 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100105.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100105 parse(String xml) {
- return ((MxCatm00100105) MxReadImpl.parse(MxCatm00100105 .class, xml, _classes));
+ return ((MxCatm00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100106.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100106.java
index 5ea04f8cc..202b544be 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100106.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100106 parse(String xml) {
- return ((MxCatm00100106) MxReadImpl.parse(MxCatm00100106 .class, xml, _classes));
+ return ((MxCatm00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100107.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100107.java
index f41eb3738..18195efd5 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100107.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100107 parse(String xml) {
- return ((MxCatm00100107) MxReadImpl.parse(MxCatm00100107 .class, xml, _classes));
+ return ((MxCatm00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100108.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100108.java
index 85f259b59..449b83520 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100108.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00100108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00100108 parse(String xml) {
- return ((MxCatm00100108) MxReadImpl.parse(MxCatm00100108 .class, xml, _classes));
+ return ((MxCatm00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00100108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00100108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00100108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200101.java
index f0549fd56..8d76b5985 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200101 parse(String xml) {
- return ((MxCatm00200101) MxReadImpl.parse(MxCatm00200101 .class, xml, _classes));
+ return ((MxCatm00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200102.java
index be36855cd..a607d9867 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200102 parse(String xml) {
- return ((MxCatm00200102) MxReadImpl.parse(MxCatm00200102 .class, xml, _classes));
+ return ((MxCatm00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200103.java
index 03b21ad13..87b8af5e2 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200103 parse(String xml) {
- return ((MxCatm00200103) MxReadImpl.parse(MxCatm00200103 .class, xml, _classes));
+ return ((MxCatm00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200104.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200104.java
index b6031cfdc..19ec2f5a7 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200104.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200104 parse(String xml) {
- return ((MxCatm00200104) MxReadImpl.parse(MxCatm00200104 .class, xml, _classes));
+ return ((MxCatm00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200105.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200105.java
index 7b1783c0d..96369c2ba 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200105.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200105 parse(String xml) {
- return ((MxCatm00200105) MxReadImpl.parse(MxCatm00200105 .class, xml, _classes));
+ return ((MxCatm00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200106.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200106.java
index 7c16ed3c7..4f55f349b 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200106.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200106 parse(String xml) {
- return ((MxCatm00200106) MxReadImpl.parse(MxCatm00200106 .class, xml, _classes));
+ return ((MxCatm00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200107.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200107.java
index 007c89cc1..828930ef2 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200107.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00200107 parse(String xml) {
- return ((MxCatm00200107) MxReadImpl.parse(MxCatm00200107 .class, xml, _classes));
+ return ((MxCatm00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300101.java
index 6e88fa089..ede446829 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300101 parse(String xml) {
- return ((MxCatm00300101) MxReadImpl.parse(MxCatm00300101 .class, xml, _classes));
+ return ((MxCatm00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300102.java
index e3bcc6c38..f95d6ba59 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300102 parse(String xml) {
- return ((MxCatm00300102) MxReadImpl.parse(MxCatm00300102 .class, xml, _classes));
+ return ((MxCatm00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300103.java
index 8c014643d..35910dcee 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300103 parse(String xml) {
- return ((MxCatm00300103) MxReadImpl.parse(MxCatm00300103 .class, xml, _classes));
+ return ((MxCatm00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300104.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300104.java
index d2db5b26d..0ad3bf7bc 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300104.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300104 parse(String xml) {
- return ((MxCatm00300104) MxReadImpl.parse(MxCatm00300104 .class, xml, _classes));
+ return ((MxCatm00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300105.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300105.java
index 7623cbd8f..42f98a73a 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300105.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300105 parse(String xml) {
- return ((MxCatm00300105) MxReadImpl.parse(MxCatm00300105 .class, xml, _classes));
+ return ((MxCatm00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300106.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300106.java
index 7263c7584..cad4b746b 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300106.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300106 parse(String xml) {
- return ((MxCatm00300106) MxReadImpl.parse(MxCatm00300106 .class, xml, _classes));
+ return ((MxCatm00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300107.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300107.java
index 01680b62e..9d6c1e4e4 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300107.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300107 parse(String xml) {
- return ((MxCatm00300107) MxReadImpl.parse(MxCatm00300107 .class, xml, _classes));
+ return ((MxCatm00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300108.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300108.java
index 3bb97d99c..e9ea28df8 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300108.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00300108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00300108 parse(String xml) {
- return ((MxCatm00300108) MxReadImpl.parse(MxCatm00300108 .class, xml, _classes));
+ return ((MxCatm00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00300108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400101.java
index 39b9402fc..8b478cd7d 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00400101 parse(String xml) {
- return ((MxCatm00400101) MxReadImpl.parse(MxCatm00400101 .class, xml, _classes));
+ return ((MxCatm00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400102.java
index 1692a754f..3d9432a46 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00400102 parse(String xml) {
- return ((MxCatm00400102) MxReadImpl.parse(MxCatm00400102 .class, xml, _classes));
+ return ((MxCatm00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400103.java
index 58f6124bd..d20d9c1b3 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00400103 parse(String xml) {
- return ((MxCatm00400103) MxReadImpl.parse(MxCatm00400103 .class, xml, _classes));
+ return ((MxCatm00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400104.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400104.java
index f4709c360..ed0b6b699 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400104.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00400104 parse(String xml) {
- return ((MxCatm00400104) MxReadImpl.parse(MxCatm00400104 .class, xml, _classes));
+ return ((MxCatm00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500101.java
index 80c6ef3fa..c03eb96d0 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00500101 parse(String xml) {
- return ((MxCatm00500101) MxReadImpl.parse(MxCatm00500101 .class, xml, _classes));
+ return ((MxCatm00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500102.java
index e81d466e2..b0e0934b5 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00500102 parse(String xml) {
- return ((MxCatm00500102) MxReadImpl.parse(MxCatm00500102 .class, xml, _classes));
+ return ((MxCatm00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500103.java
index 4ea6f0a15..4f385bd49 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00500103 parse(String xml) {
- return ((MxCatm00500103) MxReadImpl.parse(MxCatm00500103 .class, xml, _classes));
+ return ((MxCatm00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500104.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500104.java
index a76d164cd..4c45f0e43 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500104.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00500104 parse(String xml) {
- return ((MxCatm00500104) MxReadImpl.parse(MxCatm00500104 .class, xml, _classes));
+ return ((MxCatm00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500105.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500105.java
index 4d2b810d1..e1f1a796a 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500105.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00500105 parse(String xml) {
- return ((MxCatm00500105) MxReadImpl.parse(MxCatm00500105 .class, xml, _classes));
+ return ((MxCatm00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600101.java
index 0f360210b..c42b49ea6 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00600101 parse(String xml) {
- return ((MxCatm00600101) MxReadImpl.parse(MxCatm00600101 .class, xml, _classes));
+ return ((MxCatm00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600102.java
index 0c2e6b91a..01e929d1c 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00600102 parse(String xml) {
- return ((MxCatm00600102) MxReadImpl.parse(MxCatm00600102 .class, xml, _classes));
+ return ((MxCatm00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600103.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600103.java
index 5476afa10..1b7bfd7f2 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600103.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00600103 parse(String xml) {
- return ((MxCatm00600103) MxReadImpl.parse(MxCatm00600103 .class, xml, _classes));
+ return ((MxCatm00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700101.java
index d5dc5b69d..729f2efc1 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00700101 parse(String xml) {
- return ((MxCatm00700101) MxReadImpl.parse(MxCatm00700101 .class, xml, _classes));
+ return ((MxCatm00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700102.java
index 11996699c..a4512723b 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00700102 parse(String xml) {
- return ((MxCatm00700102) MxReadImpl.parse(MxCatm00700102 .class, xml, _classes));
+ return ((MxCatm00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800101.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800101.java
index 9c969e779..403bc40d6 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800101.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00800101 parse(String xml) {
- return ((MxCatm00800101) MxReadImpl.parse(MxCatm00800101 .class, xml, _classes));
+ return ((MxCatm00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800102.java b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800102.java
index c788a0063..0b9715f19 100644
--- a/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800102.java
+++ b/model-catm-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatm00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatm00800102 parse(String xml) {
- return ((MxCatm00800102) MxReadImpl.parse(MxCatm00800102 .class, xml, _classes));
+ return ((MxCatm00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatm00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatm00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatm00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClockSynchronisation2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClockSynchronisation2.java
index bd1d45e90..1a34fb0e3 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClockSynchronisation2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClockSynchronisation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class ClockSynchronisation2 {
protected String poiTmZone;
@XmlElement(name = "SynctnSvr")
protected List synctnSvr;
- @XmlElement(name = "Dely")
+ @XmlElement(name = "Dely", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar dely;
@@ -96,7 +99,7 @@ public List getSynctnSvr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDely() {
@@ -108,7 +111,7 @@ public XMLGregorianCalendar getDely() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ClockSynchronisation2 setDely(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey1.java
index 552c425b7..247aa1f59 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CryptographicKey1 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyVal", required = true)
@@ -187,7 +191,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -199,7 +203,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey1 setActvtnDt(XMLGregorianCalendar value) {
@@ -212,7 +216,7 @@ public CryptographicKey1 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey1 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey2.java
index ce1f18f7e..8a074f262 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CryptographicKey2 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyVal", required = true)
@@ -187,7 +191,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -199,7 +203,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey2 setActvtnDt(XMLGregorianCalendar value) {
@@ -212,7 +216,7 @@ public CryptographicKey2 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey2 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey4.java
index 70774a95b..9991c858f 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CryptographicKey4 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyVal", required = true)
@@ -187,7 +191,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -199,7 +203,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey4 setActvtnDt(XMLGregorianCalendar value) {
@@ -212,7 +216,7 @@ public CryptographicKey4 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey4 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey5.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey5.java
index 0ec39d87d..1c1f7d62c 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey5.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CryptographicKey5 {
@XmlElement(name = "Fctn", required = true)
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyVal", required = true)
@@ -187,7 +191,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -199,7 +203,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey5 setActvtnDt(XMLGregorianCalendar value) {
@@ -212,7 +216,7 @@ public CryptographicKey5 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -224,7 +228,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey5 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification2.java
index 690589bf2..f91f1e98a 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification2 {
protected DataSetCategory2Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification2 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification3.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification3.java
index 51e8c6017..c02332ac4 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification3.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification3 {
protected DataSetCategory3Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification3 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification4.java
index 36e6419a6..1128d693e 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification4 {
protected DataSetCategory4Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification4 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification6.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification6.java
index aed627efd..20ff0bb36 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification6.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification6 {
protected DataSetCategory9Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification6 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification7.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification7.java
index 23d49af5f..d08cda355 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification7.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DataSetIdentification7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class DataSetIdentification7 {
protected DataSetCategory12Code tp;
@XmlElement(name = "Vrsn")
protected String vrsn;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -119,7 +122,7 @@ public DataSetIdentification7 setVrsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DataSetIdentification7 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header14.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header14.java
index 1959becb8..e54e3993c 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header14.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header14.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header14 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -116,7 +119,7 @@ public Header14 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header14 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header15.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header15.java
index 1a5985f1a..d672e61b9 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header15.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header15.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header15 {
protected String frmtVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -116,7 +119,7 @@ public Header15 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header15 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header16.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header16.java
index 3527cf843..f638b5484 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header16.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header16.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class Header16 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -96,7 +99,7 @@ public Header16 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +111,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header16 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header27.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header27.java
index e1c2876af..3e40a63ef 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header27.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header27.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class Header27 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -117,7 +120,7 @@ public Header27 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -129,7 +132,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header27 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header28.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header28.java
index 9d7cd1ce0..65a975e03 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header28.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header28.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class Header28 {
protected String frmtVrsn;
@XmlElement(name = "XchgId")
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -117,7 +120,7 @@ public Header28 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -129,7 +132,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header28 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header29.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header29.java
index 58813a9bd..d4ace4f84 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header29.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header29.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class Header29 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected BigDecimal xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -97,7 +100,7 @@ public Header29 setXchgId(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -109,7 +112,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header29 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header4.java
index ae7f81677..7cfe310b9 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header4 {
protected String frmtVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -116,7 +119,7 @@ public Header4 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header4 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header6.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header6.java
index 1cd97645e..35b374b6b 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header6.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class Header6 {
protected String frmtVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -116,7 +119,7 @@ public Header6 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -128,7 +131,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header6 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LocalDateTime1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LocalDateTime1.java
index cbfb4dea6..0ff5c0686 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LocalDateTime1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LocalDateTime1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,10 +30,12 @@
})
public class LocalDateTime1 {
- @XmlElement(name = "FrDtTm")
+ @XmlElement(name = "FrDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@XmlElement(name = "UTCOffset", required = true)
@@ -42,7 +46,7 @@ public class LocalDateTime1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -54,7 +58,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LocalDateTime1 setFrDtTm(XMLGregorianCalendar value) {
@@ -67,7 +71,7 @@ public LocalDateTime1 setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -79,7 +83,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LocalDateTime1 setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetworkParameters2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetworkParameters2.java
index 669ef4167..ea05761a0 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetworkParameters2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NetworkParameters2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class NetworkParameters2 {
protected String adr;
@XmlElement(name = "PortNb")
protected BigDecimal portNb;
- @XmlElement(name = "Dely")
+ @XmlElement(name = "Dely", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar dely;
@@ -91,7 +94,7 @@ public NetworkParameters2 setPortNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDely() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getDely() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NetworkParameters2 setDely(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType5Code.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType5Code.java
index 773eb6163..16c1ae375 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType5Code.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType5Code.java
@@ -49,7 +49,7 @@ public enum PartyType5Code {
MERC,
/**
- * Entity acquiring card transactions.
+ * Bank of the Merchant providing goods and services
*
*/
ACQR,
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessRetry1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessRetry1.java
index 47c60f858..9dddca7a4 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessRetry1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessRetry1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class ProcessRetry1 {
protected String dely;
@XmlElement(name = "MaxNb")
protected BigDecimal maxNb;
- @XmlElement(name = "LastReTryTm")
+ @XmlElement(name = "LastReTryTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar lastReTryTm;
@@ -91,7 +94,7 @@ public ProcessRetry1 setMaxNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastReTryTm() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getLastReTryTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessRetry1 setLastReTryTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming1.java
index 35d77ea7f..d61ca230f 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ProcessTiming1 {
@XmlElement(name = "WtgTm")
protected String wtgTm;
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@XmlElement(name = "Prd")
@@ -76,7 +80,7 @@ public ProcessTiming1 setWtgTm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -88,7 +92,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming1 setStartTm(XMLGregorianCalendar value) {
@@ -101,7 +105,7 @@ public ProcessTiming1 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -113,7 +117,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming1 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming2.java
index cebec8eef..0ce05630b 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,10 +35,12 @@ public class ProcessTiming2 {
@XmlElement(name = "WtgTm")
protected String wtgTm;
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@XmlElement(name = "Prd")
@@ -76,7 +80,7 @@ public ProcessTiming2 setWtgTm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -88,7 +92,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming2 setStartTm(XMLGregorianCalendar value) {
@@ -101,7 +105,7 @@ public ProcessTiming2 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -113,7 +117,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming2 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming3.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming3.java
index 688c779b5..ac7b0e4a9 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming3.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class ProcessTiming3 {
@XmlElement(name = "WtgTm")
protected String wtgTm;
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@XmlElement(name = "Prd")
@@ -73,7 +77,7 @@ public ProcessTiming3 setWtgTm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -85,7 +89,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming3 setStartTm(XMLGregorianCalendar value) {
@@ -98,7 +102,7 @@ public ProcessTiming3 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -110,7 +114,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming3 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming4.java
index 85fba1533..67e489ed7 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ProcessTiming4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class ProcessTiming4 {
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@XmlElement(name = "Prd")
@@ -41,7 +45,7 @@ public class ProcessTiming4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming4 setStartTm(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public ProcessTiming4 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ProcessTiming4 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent1.java
index ff8d5afd8..b7ddf5c06 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent1 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent1 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent1 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent2.java
index df24990e6..03f92fac8 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent2 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent2 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent2 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent3.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent3.java
index b63380ca6..801d889d0 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent3.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent3 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent3 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent3 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent4.java
index 0101285a7..34774daf3 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent4 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent4 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent4 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent5.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent5.java
index d0008646f..d820a5760 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent5.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent5 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent5 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent5 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent6.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent6.java
index 6f9a7d185..cfdfc8586 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent6.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent6 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent6 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent6 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent7.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent7.java
index c10162dc6..9f3b58808 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent7.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent7 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent7 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent7 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent8.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent8.java
index 5498c3e00..751e0ce2d 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent8.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StatusReportContent8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class StatusReportContent8 {
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
- @XmlElement(name = "POIDtTm", required = true)
+ @XmlElement(name = "POIDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
@@ -134,7 +137,7 @@ public StatusReportContent8 setAttndncCntxt(AttendanceContext1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
@@ -146,7 +149,7 @@ public XMLGregorianCalendar getPOIDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StatusReportContent8 setPOIDtTm(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent1.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent1.java
index 5b23a3169..520e07150 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent1.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TMSEvent1 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -44,7 +47,7 @@ public class TMSEvent1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent1 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent2.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent2.java
index b283a185f..7adba3121 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent2.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TMSEvent2 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -44,7 +47,7 @@ public class TMSEvent2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent2 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent3.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent3.java
index 19ebeb611..477f44bbc 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent3.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TMSEvent3 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -44,7 +47,7 @@ public class TMSEvent3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent3 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent4.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent4.java
index 675ebea47..b92453373 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent4.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TMSEvent4 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -44,7 +47,7 @@ public class TMSEvent4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent4 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent5.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent5.java
index 1d0e1e9e7..6a3271aa2 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent5.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class TMSEvent5 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -44,7 +47,7 @@ public class TMSEvent5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -56,7 +59,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent5 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent6.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent6.java
index 3e830a2c6..1cf1a08f8 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent6.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TMSEvent6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class TMSEvent6 {
- @XmlElement(name = "TmStmp", required = true)
+ @XmlElement(name = "TmStmp", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tmStmp;
@XmlElement(name = "Rslt", required = true)
@@ -47,7 +50,7 @@ public class TMSEvent6 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTmStmp() {
@@ -59,7 +62,7 @@ public XMLGregorianCalendar getTmStmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TMSEvent6 setTmStmp(XMLGregorianCalendar value) {
diff --git a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TerminalManagementAction2Code.java b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TerminalManagementAction2Code.java
index 560db2e63..3b4fc01a3 100644
--- a/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TerminalManagementAction2Code.java
+++ b/model-catm-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TerminalManagementAction2Code.java
@@ -32,49 +32,49 @@ public enum TerminalManagementAction2Code {
/**
- * Data set must be activated.
+ * Request to activate the element identified inside the message exchange.
*
*/
ACTV,
/**
- * Data set must be deactivated.
+ * Request to deactivate the element identified inside the message exchange.
*
*/
DCTV,
/**
- * Data set must be deleted.
+ * Request to delete the element identified inside the message exchange.
*
*/
DELT,
/**
- * Data set must be downloaded.
+ * Request to download the element identified inside the message exchange.
*
*/
DWNL,
/**
- * Data set must be installed.
+ * Request to install the element identified inside the message exchange.
*
*/
INST,
/**
- * Point of interaction must be restarted.
+ * Request to restart the element identified inside the message exchange.
*
*/
RSTR,
/**
- * Data set must be uploaded.
+ * Request to upload the element identified inside the message exchange.
*
*/
UPLD,
/**
- * Update, or replacement of the data set.
+ * Request to update the element identified inside the message exchange.
*
*/
UPDT;
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100101.java
index 411a0f30d..a1336af1d 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00100101 parse(String xml) {
- return ((MxCatp00100101) MxReadImpl.parse(MxCatp00100101 .class, xml, _classes));
+ return ((MxCatp00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100102.java
index ecf40ac99..959086f85 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00100102 parse(String xml) {
- return ((MxCatp00100102) MxReadImpl.parse(MxCatp00100102 .class, xml, _classes));
+ return ((MxCatp00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200101.java
index 5d76f3949..b37af720a 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00200101 parse(String xml) {
- return ((MxCatp00200101) MxReadImpl.parse(MxCatp00200101 .class, xml, _classes));
+ return ((MxCatp00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200102.java
index 58d859acb..f8871f800 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00200102 parse(String xml) {
- return ((MxCatp00200102) MxReadImpl.parse(MxCatp00200102 .class, xml, _classes));
+ return ((MxCatp00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300101.java
index 8e9bc3628..4ff96c1d2 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00300101 parse(String xml) {
- return ((MxCatp00300101) MxReadImpl.parse(MxCatp00300101 .class, xml, _classes));
+ return ((MxCatp00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300102.java
index a41da234b..d3462f41b 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00300102 parse(String xml) {
- return ((MxCatp00300102) MxReadImpl.parse(MxCatp00300102 .class, xml, _classes));
+ return ((MxCatp00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400101.java
index 51d827808..249c52c4a 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00400101 parse(String xml) {
- return ((MxCatp00400101) MxReadImpl.parse(MxCatp00400101 .class, xml, _classes));
+ return ((MxCatp00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400102.java
index 275ee9d88..e4ab0393b 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00400102 parse(String xml) {
- return ((MxCatp00400102) MxReadImpl.parse(MxCatp00400102 .class, xml, _classes));
+ return ((MxCatp00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500101.java
index 9b5c37574..e470ef058 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00500101 parse(String xml) {
- return ((MxCatp00500101) MxReadImpl.parse(MxCatp00500101 .class, xml, _classes));
+ return ((MxCatp00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500102.java
index 216d1c2c6..6b79b4e52 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00500102 parse(String xml) {
- return ((MxCatp00500102) MxReadImpl.parse(MxCatp00500102 .class, xml, _classes));
+ return ((MxCatp00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600101.java
index ae74a4755..74a27b733 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00600101 parse(String xml) {
- return ((MxCatp00600101) MxReadImpl.parse(MxCatp00600101 .class, xml, _classes));
+ return ((MxCatp00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600102.java
index 93ef96920..411482cac 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00600102 parse(String xml) {
- return ((MxCatp00600102) MxReadImpl.parse(MxCatp00600102 .class, xml, _classes));
+ return ((MxCatp00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700101.java
index d80b90b51..7f90c1900 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00700101 parse(String xml) {
- return ((MxCatp00700101) MxReadImpl.parse(MxCatp00700101 .class, xml, _classes));
+ return ((MxCatp00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700102.java
index 7b34cd9ac..f5cc7723c 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00700102 parse(String xml) {
- return ((MxCatp00700102) MxReadImpl.parse(MxCatp00700102 .class, xml, _classes));
+ return ((MxCatp00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800101.java
index 5b25aa31b..4046e5511 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00800101 parse(String xml) {
- return ((MxCatp00800101) MxReadImpl.parse(MxCatp00800101 .class, xml, _classes));
+ return ((MxCatp00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800102.java
index 0a2086f47..5e3654a61 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00800102 parse(String xml) {
- return ((MxCatp00800102) MxReadImpl.parse(MxCatp00800102 .class, xml, _classes));
+ return ((MxCatp00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900101.java
index 51d6c9df1..815d102a5 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00900101 parse(String xml) {
- return ((MxCatp00900101) MxReadImpl.parse(MxCatp00900101 .class, xml, _classes));
+ return ((MxCatp00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900102.java
index 04b536070..f1f1db92a 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp00900102 parse(String xml) {
- return ((MxCatp00900102) MxReadImpl.parse(MxCatp00900102 .class, xml, _classes));
+ return ((MxCatp00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000101.java
index 7df252003..53f69ae18 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01000101 parse(String xml) {
- return ((MxCatp01000101) MxReadImpl.parse(MxCatp01000101 .class, xml, _classes));
+ return ((MxCatp01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000102.java
index dfbe5f409..70cf62dd0 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01000102 parse(String xml) {
- return ((MxCatp01000102) MxReadImpl.parse(MxCatp01000102 .class, xml, _classes));
+ return ((MxCatp01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100101.java
index 9321d0eea..aa24a9e6f 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01100101 parse(String xml) {
- return ((MxCatp01100101) MxReadImpl.parse(MxCatp01100101 .class, xml, _classes));
+ return ((MxCatp01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100102.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100102.java
index 9d91041f4..cdf6f88dd 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100102.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01100102 parse(String xml) {
- return ((MxCatp01100102) MxReadImpl.parse(MxCatp01100102 .class, xml, _classes));
+ return ((MxCatp01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01200101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01200101.java
index 1cb666676..c2a3b3a34 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01200101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01200101 parse(String xml) {
- return ((MxCatp01200101) MxReadImpl.parse(MxCatp01200101 .class, xml, _classes));
+ return ((MxCatp01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01300101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01300101.java
index 83ab7d05d..0e3abee61 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01300101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01300101 parse(String xml) {
- return ((MxCatp01300101) MxReadImpl.parse(MxCatp01300101 .class, xml, _classes));
+ return ((MxCatp01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01400101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01400101.java
index d273f3d97..1f310f3f0 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01400101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01400101 parse(String xml) {
- return ((MxCatp01400101) MxReadImpl.parse(MxCatp01400101 .class, xml, _classes));
+ return ((MxCatp01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01500101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01500101.java
index 4727d2da0..0ff3a8617 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01500101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01500101 parse(String xml) {
- return ((MxCatp01500101) MxReadImpl.parse(MxCatp01500101 .class, xml, _classes));
+ return ((MxCatp01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01600101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01600101.java
index eb2bafa38..03c49ae07 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01600101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01600101 parse(String xml) {
- return ((MxCatp01600101) MxReadImpl.parse(MxCatp01600101 .class, xml, _classes));
+ return ((MxCatp01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01700101.java b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01700101.java
index 9a758a616..374335692 100644
--- a/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01700101.java
+++ b/model-catp-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCatp01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCatp01700101 parse(String xml) {
- return ((MxCatp01700101) MxReadImpl.parse(MxCatp01700101 .class, xml, _classes));
+ return ((MxCatp01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCatp01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCatp01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCatp01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMAccountStatement2.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMAccountStatement2.java
index fdb18398b..937a720bc 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMAccountStatement2.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMAccountStatement2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@
})
public class ATMAccountStatement2 {
- @XmlElement(name = "TxDt")
+ @XmlElement(name = "TxDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar txDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "ShrtTxt")
@@ -54,7 +58,7 @@ public class ATMAccountStatement2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDt() {
@@ -66,7 +70,7 @@ public XMLGregorianCalendar getTxDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMAccountStatement2 setTxDt(XMLGregorianCalendar value) {
@@ -79,7 +83,7 @@ public ATMAccountStatement2 setTxDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -91,7 +95,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMAccountStatement2 setValDt(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction23.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction23.java
index 2c11db277..59f7ce954 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction23.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction23.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -65,7 +67,8 @@ public class ATMTransaction23 {
protected BigDecimal ttlReqdAmt;
@XmlElement(name = "DtldReqdAmt")
protected DetailedAmount17 dtldReqdAmt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
@XmlElement(name = "InstntTrfPrgm")
@@ -361,7 +364,7 @@ public ATMTransaction23 setDtldReqdAmt(DetailedAmount17 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -373,7 +376,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMTransaction23 setReqdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction24.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction24.java
index cba43b51b..1980a0c47 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction24.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMTransaction24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -85,10 +87,12 @@ public class ATMTransaction24 {
protected List addtlChrg;
@XmlElement(name = "Lmts")
protected ATMTransactionAmounts6 lmts;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "PropsdExctnDt")
+ @XmlElement(name = "PropsdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar propsdExctnDt;
@XmlElement(name = "InstntTrfPrgm")
@@ -544,7 +548,7 @@ public ATMTransaction24 setLmts(ATMTransactionAmounts6 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -556,7 +560,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMTransaction24 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -569,7 +573,7 @@ public ATMTransaction24 setReqdExctnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPropsdExctnDt() {
@@ -581,7 +585,7 @@ public XMLGregorianCalendar getPropsdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMTransaction24 setPropsdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndDirection43.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndDirection43.java
index a48b31210..b53db9cb2 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndDirection43.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountAndDirection43.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class AmountAndDirection43 {
protected CurrencyAndAmount amt;
@XmlElement(name = "Sgn")
protected Boolean sgn;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -90,7 +93,7 @@ public AmountAndDirection43 setSgn(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmountAndDirection43 setDt(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion4.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion4.java
index 50b3693f0..da7a946c4 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion4.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,10 +54,12 @@ public class CurrencyConversion4 {
protected BigDecimal xchgRateDcml;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -224,7 +228,7 @@ public CurrencyConversion4 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -236,7 +240,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion4 setQtnDt(XMLGregorianCalendar value) {
@@ -249,7 +253,7 @@ public CurrencyConversion4 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -261,7 +265,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion4 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion9.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion9.java
index 84a0936ea..ccf5f1fa4 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion9.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion9.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class CurrencyConversion9 {
protected BigDecimal xchgRate;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -196,7 +200,7 @@ public CurrencyConversion9 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -208,7 +212,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion9 setQtnDt(XMLGregorianCalendar value) {
@@ -221,7 +225,7 @@ public CurrencyConversion9 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -233,7 +237,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion9 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header22.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header22.java
index a558721ce..3bb69bd7a 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header22.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header22.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header22 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -132,7 +135,7 @@ public Header22 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header22 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header33.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header33.java
index a1f35c864..a4598959f 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header33.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header33.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header33 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId")
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -132,7 +135,7 @@ public Header33 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header33 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction3.java b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction3.java
index 3367cc6af..e3a8595b7 100644
--- a/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction3.java
+++ b/model-catp-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RecurringTransaction3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,12 +32,14 @@
})
public class RecurringTransaction3 {
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "NbOfOcrncs")
protected BigDecimal nbOfOcrncs;
- @XmlElement(name = "EndDt", required = true)
+ @XmlElement(name = "EndDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
@XmlElement(name = "PrdUnit")
@@ -49,7 +53,7 @@ public class RecurringTransaction3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -61,7 +65,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecurringTransaction3 setStartDt(XMLGregorianCalendar value) {
@@ -99,7 +103,7 @@ public RecurringTransaction3 setNbOfOcrncs(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -111,7 +115,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RecurringTransaction3 setEndDt(XMLGregorianCalendar value) {
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00100101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00100101.java
index d523c4a1c..e79add5ac 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00100101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00100101 parse(String xml) {
- return ((MxCbrf00100101) MxReadImpl.parse(MxCbrf00100101 .class, xml, _classes));
+ return ((MxCbrf00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00200101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00200101.java
index 941a09b8e..ca273e63f 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00200101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00200101 parse(String xml) {
- return ((MxCbrf00200101) MxReadImpl.parse(MxCbrf00200101 .class, xml, _classes));
+ return ((MxCbrf00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00300101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00300101.java
index 2201fa753..d077ad975 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00300101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00300101 parse(String xml) {
- return ((MxCbrf00300101) MxReadImpl.parse(MxCbrf00300101 .class, xml, _classes));
+ return ((MxCbrf00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00400101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00400101.java
index e7c5acfd4..3424f176a 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00400101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00400101 parse(String xml) {
- return ((MxCbrf00400101) MxReadImpl.parse(MxCbrf00400101 .class, xml, _classes));
+ return ((MxCbrf00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00500101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00500101.java
index ba6063474..37f7bdc73 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00500101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00500101 parse(String xml) {
- return ((MxCbrf00500101) MxReadImpl.parse(MxCbrf00500101 .class, xml, _classes));
+ return ((MxCbrf00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00600101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00600101.java
index d89390464..bc0772de9 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00600101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00600101 parse(String xml) {
- return ((MxCbrf00600101) MxReadImpl.parse(MxCbrf00600101 .class, xml, _classes));
+ return ((MxCbrf00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00700101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00700101.java
index fbc38b500..08f7d8869 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00700101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00700101 parse(String xml) {
- return ((MxCbrf00700101) MxReadImpl.parse(MxCbrf00700101 .class, xml, _classes));
+ return ((MxCbrf00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00800101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00800101.java
index 6a567698b..a5778b15a 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00800101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00800101 parse(String xml) {
- return ((MxCbrf00800101) MxReadImpl.parse(MxCbrf00800101 .class, xml, _classes));
+ return ((MxCbrf00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00900101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00900101.java
index 764f62d3a..96f4f8ab0 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00900101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf00900101 parse(String xml) {
- return ((MxCbrf00900101) MxReadImpl.parse(MxCbrf00900101 .class, xml, _classes));
+ return ((MxCbrf00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01000101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01000101.java
index f6b7df0d7..9510dad51 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01000101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf01000101 parse(String xml) {
- return ((MxCbrf01000101) MxReadImpl.parse(MxCbrf01000101 .class, xml, _classes));
+ return ((MxCbrf01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01100101.java b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01100101.java
index 603d25fcc..f821cb0c5 100644
--- a/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01100101.java
+++ b/model-cbrf-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxCbrf01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxCbrf01100101 parse(String xml) {
- return ((MxCbrf01100101) MxReadImpl.parse(MxCbrf01100101 .class, xml, _classes));
+ return ((MxCbrf01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxCbrf01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxCbrf01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxCbrf01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DailyFundTransfer1Choice.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DailyFundTransfer1Choice.java
index a0febc56e..fa50c8266 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DailyFundTransfer1Choice.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DailyFundTransfer1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class DailyFundTransfer1Choice {
- @XmlElement(name = "TrfTm")
+ @XmlElement(name = "TrfTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar trfTm;
@XmlElement(name = "TrfEvt")
@@ -37,7 +40,7 @@ public class DailyFundTransfer1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTrfTm() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getTrfTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DailyFundTransfer1Choice setTrfTm(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectoryParticipantInformation1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectoryParticipantInformation1.java
index 428635fb6..fad2d6e08 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectoryParticipantInformation1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectoryParticipantInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,10 +44,12 @@ public class DirectoryParticipantInformation1 {
protected BranchAndFinancialInstitutionIdentification5 acctSvcr;
@XmlElement(name = "DrctPtcpt")
protected FinancialInstitutionIdentification9 drctPtcpt;
- @XmlElement(name = "NtryCreDt", required = true)
+ @XmlElement(name = "NtryCreDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar ntryCreDt;
- @XmlElement(name = "NtryDeltnDt")
+ @XmlElement(name = "NtryDeltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar ntryDeltnDt;
@XmlElement(name = "SvcrTp", required = true)
@@ -56,7 +60,8 @@ public class DirectoryParticipantInformation1 {
protected String xchgTp;
@XmlElement(name = "RstrctnTp", required = true)
protected String rstrctnTp;
- @XmlElement(name = "RstrctnFctvDt")
+ @XmlElement(name = "RstrctnFctvDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rstrctnFctvDt;
@XmlElement(name = "PtcptId", required = true)
@@ -144,7 +149,7 @@ public DirectoryParticipantInformation1 setDrctPtcpt(FinancialInstitutionIdentif
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNtryCreDt() {
@@ -156,7 +161,7 @@ public XMLGregorianCalendar getNtryCreDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectoryParticipantInformation1 setNtryCreDt(XMLGregorianCalendar value) {
@@ -169,7 +174,7 @@ public DirectoryParticipantInformation1 setNtryCreDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNtryDeltnDt() {
@@ -181,7 +186,7 @@ public XMLGregorianCalendar getNtryDeltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectoryParticipantInformation1 setNtryDeltnDt(XMLGregorianCalendar value) {
@@ -294,7 +299,7 @@ public DirectoryParticipantInformation1 setRstrctnTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRstrctnFctvDt() {
@@ -306,7 +311,7 @@ public XMLGregorianCalendar getRstrctnFctvDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectoryParticipantInformation1 setRstrctnFctvDt(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityReportV01.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityReportV01.java
index 3f3a73437..ff5f7dc82 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityReportV01.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LiquidityReportV01.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class LiquidityReportV01 {
protected MessageHeader3 msgHdr;
@XmlElement(name = "CreRsn", required = true)
protected String creRsn;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "AcctLqdtyRpt", required = true)
@@ -99,7 +102,7 @@ public LiquidityReportV01 setCreRsn(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -111,7 +114,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LiquidityReportV01 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantAccount1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantAccount1.java
index 2f459363e..c5f3935b4 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantAccount1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantAccount1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,13 +44,16 @@ public class ParticipantAccount1 {
protected String acctTpNm;
@XmlElement(name = "AcctTpShrtNm", required = true)
protected String acctTpShrtNm;
- @XmlElement(name = "OpngDt", required = true)
+ @XmlElement(name = "OpngDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar opngDt;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clsgDt;
- @XmlElement(name = "DeltnDt")
+ @XmlElement(name = "DeltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deltnDt;
@XmlElement(name = "LicWdrwlDoc")
@@ -121,7 +126,7 @@ public ParticipantAccount1 setAcctTpShrtNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOpngDt() {
@@ -133,7 +138,7 @@ public XMLGregorianCalendar getOpngDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ParticipantAccount1 setOpngDt(XMLGregorianCalendar value) {
@@ -146,7 +151,7 @@ public ParticipantAccount1 setOpngDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -158,7 +163,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ParticipantAccount1 setClsgDt(XMLGregorianCalendar value) {
@@ -171,7 +176,7 @@ public ParticipantAccount1 setClsgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeltnDt() {
@@ -183,7 +188,7 @@ public XMLGregorianCalendar getDeltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ParticipantAccount1 setDeltnDt(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantInformation1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantInformation1.java
index dbe02e73e..0b3611f0b 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantInformation1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ParticipantInformation1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class ParticipantInformation1 {
- @XmlElement(name = "PrflDeltnDt")
+ @XmlElement(name = "PrflDeltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prflDeltnDt;
@XmlElement(name = "BkBrnch")
@@ -51,7 +54,7 @@ public class ParticipantInformation1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrflDeltnDt() {
@@ -63,7 +66,7 @@ public XMLGregorianCalendar getPrflDeltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ParticipantInformation1 setPrflDeltnDt(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QueueReorderingNotificationV01.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QueueReorderingNotificationV01.java
index 2c25ff035..2a3d72eae 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QueueReorderingNotificationV01.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QueueReorderingNotificationV01.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class QueueReorderingNotificationV01 {
@XmlElement(name = "GrpHdr", required = true)
protected GroupHeader58 grpHdr;
- @XmlElement(name = "OprTm", required = true)
+ @XmlElement(name = "OprTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar oprTm;
@XmlElement(name = "RordrdMsgId", required = true)
@@ -74,7 +77,7 @@ public QueueReorderingNotificationV01 setGrpHdr(GroupHeader58 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOprTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getOprTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public QueueReorderingNotificationV01 setOprTm(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeDetails1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeDetails1.java
index f5dd73715..b0541ee79 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeDetails1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeDetails1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class ScheduleChangeDetails1 {
- @XmlElement(name = "SchdlChngFctvDt", required = true)
+ @XmlElement(name = "SchdlChngFctvDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar schdlChngFctvDt;
@XmlElement(name = "SchdlNtry", required = true)
@@ -39,7 +42,7 @@ public class ScheduleChangeDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSchdlChngFctvDt() {
@@ -51,7 +54,7 @@ public XMLGregorianCalendar getSchdlChngFctvDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ScheduleChangeDetails1 setSchdlChngFctvDt(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeEntry1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeEntry1.java
index 463f752c0..cb1fcf804 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeEntry1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ScheduleChangeEntry1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class ScheduleChangeEntry1 {
protected String evtFrqcy;
@XmlElement(name = "EvtPrvsFrqcy")
protected String evtPrvsFrqcy;
- @XmlElement(name = "EvtTm")
+ @XmlElement(name = "EvtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar evtTm;
- @XmlElement(name = "EvtPrvsTm")
+ @XmlElement(name = "EvtPrvsTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar evtPrvsTm;
@XmlElement(name = "EvtDrtn")
@@ -159,7 +163,7 @@ public ScheduleChangeEntry1 setEvtPrvsFrqcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtTm() {
@@ -171,7 +175,7 @@ public XMLGregorianCalendar getEvtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ScheduleChangeEntry1 setEvtTm(XMLGregorianCalendar value) {
@@ -184,7 +188,7 @@ public ScheduleChangeEntry1 setEvtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEvtPrvsTm() {
@@ -196,7 +200,7 @@ public XMLGregorianCalendar getEvtPrvsTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ScheduleChangeEntry1 setEvtPrvsTm(XMLGregorianCalendar value) {
diff --git a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemMigration1.java b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemMigration1.java
index 4c0380bad..2bb0191f7 100644
--- a/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemMigration1.java
+++ b/model-cbrf-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemMigration1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,14 +33,16 @@ public class SystemMigration1 {
@XmlElement(name = "NPSPtcptInd")
protected Boolean npsPtcptInd;
- @XmlElement(name = "PlandMgrtnDt")
+ @XmlElement(name = "PlandMgrtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar plandMgrtnDt;
@XmlElement(name = "BalRcvdInd")
protected Boolean balRcvdInd;
@XmlElement(name = "Mgrtd")
protected Boolean mgrtd;
- @XmlElement(name = "LastDt")
+ @XmlElement(name = "LastDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastDt;
@@ -72,7 +76,7 @@ public SystemMigration1 setNPSPtcptInd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPlandMgrtnDt() {
@@ -84,7 +88,7 @@ public XMLGregorianCalendar getPlandMgrtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemMigration1 setPlandMgrtnDt(XMLGregorianCalendar value) {
@@ -147,7 +151,7 @@ public SystemMigration1 setMgrtd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLastDt() {
@@ -159,7 +163,7 @@ public XMLGregorianCalendar getLastDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemMigration1 setLastDt(XMLGregorianCalendar value) {
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00100101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00100101.java
index 1f9557661..70837d4d2 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00100101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00100101 parse(String xml) {
- return ((MxColr00100101) MxReadImpl.parse(MxColr00100101 .class, xml, _classes));
+ return ((MxColr00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00200101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00200101.java
index 0e6475a34..4252de717 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00200101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00200101 parse(String xml) {
- return ((MxColr00200101) MxReadImpl.parse(MxColr00200101 .class, xml, _classes));
+ return ((MxColr00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300101.java
index c7f69215f..a6860d27f 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00300101 parse(String xml) {
- return ((MxColr00300101) MxReadImpl.parse(MxColr00300101 .class, xml, _classes));
+ return ((MxColr00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300102.java
index d8ff245a4..49e5b56b1 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00300102 parse(String xml) {
- return ((MxColr00300102) MxReadImpl.parse(MxColr00300102 .class, xml, _classes));
+ return ((MxColr00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300103.java
index 8b19c4df4..0689c925e 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00300103 parse(String xml) {
- return ((MxColr00300103) MxReadImpl.parse(MxColr00300103 .class, xml, _classes));
+ return ((MxColr00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300104.java
index 744548813..de137bab8 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00300104 parse(String xml) {
- return ((MxColr00300104) MxReadImpl.parse(MxColr00300104 .class, xml, _classes));
+ return ((MxColr00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400101.java
index ae8c6c614..ba46fa320 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00400101 parse(String xml) {
- return ((MxColr00400101) MxReadImpl.parse(MxColr00400101 .class, xml, _classes));
+ return ((MxColr00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400102.java
index 87eddba62..f85b9a2ba 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00400102 parse(String xml) {
- return ((MxColr00400102) MxReadImpl.parse(MxColr00400102 .class, xml, _classes));
+ return ((MxColr00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400103.java
index 327b54a65..a92708235 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00400103 parse(String xml) {
- return ((MxColr00400103) MxReadImpl.parse(MxColr00400103 .class, xml, _classes));
+ return ((MxColr00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400104.java
index 93a80d94c..12892cbf5 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00400104 parse(String xml) {
- return ((MxColr00400104) MxReadImpl.parse(MxColr00400104 .class, xml, _classes));
+ return ((MxColr00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500101.java
index 9392db508..ee308184d 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00500101 parse(String xml) {
- return ((MxColr00500101) MxReadImpl.parse(MxColr00500101 .class, xml, _classes));
+ return ((MxColr00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500102.java
index 93812ff45..4c31e415e 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00500102 parse(String xml) {
- return ((MxColr00500102) MxReadImpl.parse(MxColr00500102 .class, xml, _classes));
+ return ((MxColr00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500103.java
index 02906ef56..daa0cb7fb 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00500103 parse(String xml) {
- return ((MxColr00500103) MxReadImpl.parse(MxColr00500103 .class, xml, _classes));
+ return ((MxColr00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500104.java
index eafbb6349..bc230337d 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00500104 parse(String xml) {
- return ((MxColr00500104) MxReadImpl.parse(MxColr00500104 .class, xml, _classes));
+ return ((MxColr00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500105.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500105.java
index a95d53f8d..d508f77e9 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500105.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00500105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00500105 parse(String xml) {
- return ((MxColr00500105) MxReadImpl.parse(MxColr00500105 .class, xml, _classes));
+ return ((MxColr00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00500105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00500105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00500105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600101.java
index ef8cb7d11..57a4ddc51 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00600101 parse(String xml) {
- return ((MxColr00600101) MxReadImpl.parse(MxColr00600101 .class, xml, _classes));
+ return ((MxColr00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600102.java
index 92cb4e258..7d8b542cd 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00600102 parse(String xml) {
- return ((MxColr00600102) MxReadImpl.parse(MxColr00600102 .class, xml, _classes));
+ return ((MxColr00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600103.java
index 37b917953..4f7d9de3e 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00600103 parse(String xml) {
- return ((MxColr00600103) MxReadImpl.parse(MxColr00600103 .class, xml, _classes));
+ return ((MxColr00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600104.java
index 257739d40..a70cf0774 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00600104 parse(String xml) {
- return ((MxColr00600104) MxReadImpl.parse(MxColr00600104 .class, xml, _classes));
+ return ((MxColr00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700101.java
index 883e8d97d..6cd763fd6 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00700101 parse(String xml) {
- return ((MxColr00700101) MxReadImpl.parse(MxColr00700101 .class, xml, _classes));
+ return ((MxColr00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700102.java
index f6794839e..6b25cb8de 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00700102 parse(String xml) {
- return ((MxColr00700102) MxReadImpl.parse(MxColr00700102 .class, xml, _classes));
+ return ((MxColr00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700103.java
index 1b248cfe8..b2f5bab81 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00700103 parse(String xml) {
- return ((MxColr00700103) MxReadImpl.parse(MxColr00700103 .class, xml, _classes));
+ return ((MxColr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700104.java
index b4bf6008f..8068b6e3b 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00700104 parse(String xml) {
- return ((MxColr00700104) MxReadImpl.parse(MxColr00700104 .class, xml, _classes));
+ return ((MxColr00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700105.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700105.java
index 2f831cb6f..2d0317b31 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700105.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00700105 parse(String xml) {
- return ((MxColr00700105) MxReadImpl.parse(MxColr00700105 .class, xml, _classes));
+ return ((MxColr00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800101.java
index c012f31e0..0fc30aca0 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00800101 parse(String xml) {
- return ((MxColr00800101) MxReadImpl.parse(MxColr00800101 .class, xml, _classes));
+ return ((MxColr00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800102.java
index b9ac9bae3..c4a9755bc 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00800102 parse(String xml) {
- return ((MxColr00800102) MxReadImpl.parse(MxColr00800102 .class, xml, _classes));
+ return ((MxColr00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800103.java
index be021b8c2..3e8669d65 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00800103 parse(String xml) {
- return ((MxColr00800103) MxReadImpl.parse(MxColr00800103 .class, xml, _classes));
+ return ((MxColr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800104.java
index 0e4efcd10..3acd5a386 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00800104 parse(String xml) {
- return ((MxColr00800104) MxReadImpl.parse(MxColr00800104 .class, xml, _classes));
+ return ((MxColr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800105.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800105.java
index b4bb62931..ec15d4fcd 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800105.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00800105 parse(String xml) {
- return ((MxColr00800105) MxReadImpl.parse(MxColr00800105 .class, xml, _classes));
+ return ((MxColr00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900101.java
index 54d076921..512b1cfcc 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00900101 parse(String xml) {
- return ((MxColr00900101) MxReadImpl.parse(MxColr00900101 .class, xml, _classes));
+ return ((MxColr00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900102.java
index 6e8392ca7..4a0ef176b 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00900102 parse(String xml) {
- return ((MxColr00900102) MxReadImpl.parse(MxColr00900102 .class, xml, _classes));
+ return ((MxColr00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900103.java
index bba291c08..b16ab834a 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00900103 parse(String xml) {
- return ((MxColr00900103) MxReadImpl.parse(MxColr00900103 .class, xml, _classes));
+ return ((MxColr00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900104.java
index fc0f0ddcc..eeaec52ad 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr00900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr00900104 parse(String xml) {
- return ((MxColr00900104) MxReadImpl.parse(MxColr00900104 .class, xml, _classes));
+ return ((MxColr00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr00900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000101.java
index 3081bcdaf..f32beef18 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01000101 parse(String xml) {
- return ((MxColr01000101) MxReadImpl.parse(MxColr01000101 .class, xml, _classes));
+ return ((MxColr01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000102.java
index 0f6be7572..229ba00d5 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01000102 parse(String xml) {
- return ((MxColr01000102) MxReadImpl.parse(MxColr01000102 .class, xml, _classes));
+ return ((MxColr01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000103.java
index 66c6059a8..3a5eacd65 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01000103 parse(String xml) {
- return ((MxColr01000103) MxReadImpl.parse(MxColr01000103 .class, xml, _classes));
+ return ((MxColr01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000104.java
index e56ca6f55..3a5a530ac 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01000104 parse(String xml) {
- return ((MxColr01000104) MxReadImpl.parse(MxColr01000104 .class, xml, _classes));
+ return ((MxColr01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100101.java
index d296aa514..8941c83ba 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01100101 parse(String xml) {
- return ((MxColr01100101) MxReadImpl.parse(MxColr01100101 .class, xml, _classes));
+ return ((MxColr01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100102.java
index 4a11bd2f8..39bc6805b 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01100102 parse(String xml) {
- return ((MxColr01100102) MxReadImpl.parse(MxColr01100102 .class, xml, _classes));
+ return ((MxColr01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01100102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01100102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100103.java
index c27b04255..65e9271b6 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01100103 parse(String xml) {
- return ((MxColr01100103) MxReadImpl.parse(MxColr01100103 .class, xml, _classes));
+ return ((MxColr01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01100103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01100103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100104.java
index 600c68ba0..e0ed1926e 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01100104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01100104 parse(String xml) {
- return ((MxColr01100104) MxReadImpl.parse(MxColr01100104 .class, xml, _classes));
+ return ((MxColr01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01100104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01100104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01100104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200101.java
index 2f76d350d..7ed03bab7 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01200101 parse(String xml) {
- return ((MxColr01200101) MxReadImpl.parse(MxColr01200101 .class, xml, _classes));
+ return ((MxColr01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200102.java
index 939bb17e1..1fb2dbeb5 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01200102 parse(String xml) {
- return ((MxColr01200102) MxReadImpl.parse(MxColr01200102 .class, xml, _classes));
+ return ((MxColr01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200103.java
index cb3d52882..72920a87c 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01200103 parse(String xml) {
- return ((MxColr01200103) MxReadImpl.parse(MxColr01200103 .class, xml, _classes));
+ return ((MxColr01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200104.java
index 04bee3f62..acde030b7 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01200104 parse(String xml) {
- return ((MxColr01200104) MxReadImpl.parse(MxColr01200104 .class, xml, _classes));
+ return ((MxColr01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300101.java
index 40ed5f1ab..98bc54eb8 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01300101 parse(String xml) {
- return ((MxColr01300101) MxReadImpl.parse(MxColr01300101 .class, xml, _classes));
+ return ((MxColr01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300102.java
index 8d5cf3635..93df3004f 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01300102 parse(String xml) {
- return ((MxColr01300102) MxReadImpl.parse(MxColr01300102 .class, xml, _classes));
+ return ((MxColr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300103.java
index f75df48f2..948e433bd 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01300103 parse(String xml) {
- return ((MxColr01300103) MxReadImpl.parse(MxColr01300103 .class, xml, _classes));
+ return ((MxColr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300104.java
index 3a6ded089..8a3ab71ee 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01300104 parse(String xml) {
- return ((MxColr01300104) MxReadImpl.parse(MxColr01300104 .class, xml, _classes));
+ return ((MxColr01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400101.java
index 4a359553a..72d220a89 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01400101 parse(String xml) {
- return ((MxColr01400101) MxReadImpl.parse(MxColr01400101 .class, xml, _classes));
+ return ((MxColr01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400102.java
index 72c5a9265..b5e7dcb1e 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01400102 parse(String xml) {
- return ((MxColr01400102) MxReadImpl.parse(MxColr01400102 .class, xml, _classes));
+ return ((MxColr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400103.java
index 2e454c845..7b68dffef 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01400103 parse(String xml) {
- return ((MxColr01400103) MxReadImpl.parse(MxColr01400103 .class, xml, _classes));
+ return ((MxColr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400104.java
index 8b1fda230..3f2f4f61c 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01400104 parse(String xml) {
- return ((MxColr01400104) MxReadImpl.parse(MxColr01400104 .class, xml, _classes));
+ return ((MxColr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500101.java
index 59a8c13b1..07961a9b6 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01500101 parse(String xml) {
- return ((MxColr01500101) MxReadImpl.parse(MxColr01500101 .class, xml, _classes));
+ return ((MxColr01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500102.java
index c46817dc0..544a6f60d 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01500102 parse(String xml) {
- return ((MxColr01500102) MxReadImpl.parse(MxColr01500102 .class, xml, _classes));
+ return ((MxColr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500103.java
index 86c4346a4..b6ffb0999 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01500103 parse(String xml) {
- return ((MxColr01500103) MxReadImpl.parse(MxColr01500103 .class, xml, _classes));
+ return ((MxColr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500104.java
index d3ff2d7c2..2a9ec0641 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01500104 parse(String xml) {
- return ((MxColr01500104) MxReadImpl.parse(MxColr01500104 .class, xml, _classes));
+ return ((MxColr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600101.java
index a40b104e9..6605c5e0f 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01600101 parse(String xml) {
- return ((MxColr01600101) MxReadImpl.parse(MxColr01600101 .class, xml, _classes));
+ return ((MxColr01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600102.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600102.java
index ddb902af8..99005410f 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600102.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01600102 parse(String xml) {
- return ((MxColr01600102) MxReadImpl.parse(MxColr01600102 .class, xml, _classes));
+ return ((MxColr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600103.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600103.java
index 1fa5adc24..d16e95a17 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600103.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01600103 parse(String xml) {
- return ((MxColr01600103) MxReadImpl.parse(MxColr01600103 .class, xml, _classes));
+ return ((MxColr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600104.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600104.java
index 1b1dfbf97..d192b8503 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600104.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01600104 parse(String xml) {
- return ((MxColr01600104) MxReadImpl.parse(MxColr01600104 .class, xml, _classes));
+ return ((MxColr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01700101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01700101.java
index 0c3fcc854..8e39c5bd5 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01700101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01700101 parse(String xml) {
- return ((MxColr01700101) MxReadImpl.parse(MxColr01700101 .class, xml, _classes));
+ return ((MxColr01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01800101.java b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01800101.java
index 519041d20..9380d409c 100644
--- a/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01800101.java
+++ b/model-colr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxColr01800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxColr01800101 parse(String xml) {
- return ((MxColr01800101) MxReadImpl.parse(MxColr01800101 .class, xml, _classes));
+ return ((MxColr01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxColr01800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxColr01800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxColr01800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement2.java
index edf12a02c..b88036338 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class Agreement2 {
protected String agrmtDtls;
@XmlElement(name = "AgrmtId")
protected String agrmtId;
- @XmlElement(name = "AgrmtDt", required = true)
+ @XmlElement(name = "AgrmtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar agrmtDt;
@XmlElement(name = "BaseCcy", required = true)
@@ -96,7 +99,7 @@ public Agreement2 setAgrmtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAgrmtDt() {
@@ -108,7 +111,7 @@ public XMLGregorianCalendar getAgrmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Agreement2 setAgrmtDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement4.java
index b6276e6a6..55de74a43 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class Agreement4 {
protected String agrmtDtls;
@XmlElement(name = "AgrmtId")
protected String agrmtId;
- @XmlElement(name = "AgrmtDt", required = true)
+ @XmlElement(name = "AgrmtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar agrmtDt;
@XmlElement(name = "BaseCcy", required = true)
@@ -96,7 +99,7 @@ public Agreement4 setAgrmtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAgrmtDt() {
@@ -108,7 +111,7 @@ public XMLGregorianCalendar getAgrmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Agreement4 setAgrmtDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountPricePerFinancialInstrumentQuantity9.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountPricePerFinancialInstrumentQuantity9.java
index 69fc4e09f..1b00f2e81 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountPricePerFinancialInstrumentQuantity9.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountPricePerFinancialInstrumentQuantity9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class AmountPricePerFinancialInstrumentQuantity9 {
protected PriceRateOrAmount3Choice pricVal;
@XmlElement(name = "FinInstrmQty", required = true)
protected FinancialInstrumentQuantity1Choice finInstrmQty;
- @XmlElement(name = "PricFxgDt", required = true)
+ @XmlElement(name = "PricFxgDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pricFxgDt;
@@ -118,7 +121,7 @@ public AmountPricePerFinancialInstrumentQuantity9 setFinInstrmQty(FinancialInstr
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPricFxgDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPricFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmountPricePerFinancialInstrumentQuantity9 setPricFxgDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral1.java
index 4b2b41099..15d9e03cf 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,10 +39,12 @@ public class CashCollateral1 {
@XmlElement(name = "DpstTp")
@XmlSchemaType(name = "string")
protected DepositType1Code dpstTp;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -105,7 +109,7 @@ public CashCollateral1 setDpstTp(DepositType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -117,7 +121,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral1 setMtrtyDt(XMLGregorianCalendar value) {
@@ -130,7 +134,7 @@ public CashCollateral1 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -142,7 +146,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral2.java
index 8c04fa3cf..42fd59410 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CashCollateral2 {
@XmlElement(name = "DpstTp")
@XmlSchemaType(name = "string")
protected DepositType1Code dpstTp;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -189,7 +193,7 @@ public CashCollateral2 setDpstTp(DepositType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -201,7 +205,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral2 setMtrtyDt(XMLGregorianCalendar value) {
@@ -214,7 +218,7 @@ public CashCollateral2 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -226,7 +230,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral2 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral3.java
index 2cadf35b1..8b9f74001 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,10 +45,12 @@ public class CashCollateral3 {
@XmlElement(name = "DpstTp")
@XmlSchemaType(name = "string")
protected DepositType1Code dpstTp;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -161,7 +165,7 @@ public CashCollateral3 setDpstTp(DepositType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -173,7 +177,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral3 setMtrtyDt(XMLGregorianCalendar value) {
@@ -186,7 +190,7 @@ public CashCollateral3 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -198,7 +202,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral3 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral4.java
index beb213d99..8864e10f1 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral4.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,10 +45,12 @@ public class CashCollateral4 {
protected DepositType1Code dpstTp;
@XmlElement(name = "BlckdAmt")
protected ActiveCurrencyAndAmount blckdAmt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -161,7 +165,7 @@ public CashCollateral4 setBlckdAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -173,7 +177,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral4 setMtrtyDt(XMLGregorianCalendar value) {
@@ -186,7 +190,7 @@ public CashCollateral4 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -198,7 +202,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral4 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMovement9.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMovement9.java
index 59de84127..30363bb16 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMovement9.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralMovement9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class CollateralMovement9 {
@XmlElement(name = "CollTp", required = true)
@XmlSchemaType(name = "string")
protected CollateralType1Code collTp;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -63,7 +66,7 @@ public CollateralMovement9 setCollTp(CollateralType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralMovement9 setDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralValuePosition3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralValuePosition3.java
index b38ccfad5..f953ba76d 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralValuePosition3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CollateralValuePosition3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class CollateralValuePosition3 {
- @XmlElement(name = "DataAccsTm", required = true)
+ @XmlElement(name = "DataAccsTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dataAccsTm;
@XmlElement(name = "TtlCollValtn")
@@ -45,7 +48,7 @@ public class CollateralValuePosition3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDataAccsTm() {
@@ -57,7 +60,7 @@ public XMLGregorianCalendar getDataAccsTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CollateralValuePosition3 setDataAccsTm(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat14Choice.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat14Choice.java
index e45c23cce..ed6709568 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat14Choice.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateFormat14Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class DateFormat14Choice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "DtCd")
@@ -37,7 +40,7 @@ public class DateFormat14Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateFormat14Choice setDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Dispute1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Dispute1.java
index 2af0dc2fb..ca5dcd26c 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Dispute1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Dispute1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class Dispute1 {
protected String mrgnCallReqId;
@XmlElement(name = "DsptdAmt", required = true)
protected ActiveCurrencyAndAmount dsptdAmt;
- @XmlElement(name = "DsptDt", required = true)
+ @XmlElement(name = "DsptDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dsptDt;
@@ -90,7 +93,7 @@ public Dispute1 setDsptdAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDsptDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getDsptDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Dispute1 setDsptDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader1.java
index 99c23f57a..29e17b996 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class ExcessCashInstructionHeader1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp", required = true)
@@ -71,7 +74,7 @@ public ExcessCashInstructionHeader1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ExcessCashInstructionHeader1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader2.java
index 990b39a41..5c3f2eea5 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ExcessCashInstructionHeader2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class ExcessCashInstructionHeader2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MktInfrstrctrTxId")
@@ -68,7 +71,7 @@ public ExcessCashInstructionHeader2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ExcessCashInstructionHeader2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestAmount1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestAmount1.java
index 77d77d86a..cbf2ee72d 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestAmount1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestAmount1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class InterestAmount1 {
protected DatePeriodDetails intrstPrd;
@XmlElement(name = "AcrdIntrstAmt", required = true)
protected ActiveCurrencyAndAmount acrdIntrstAmt;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstMtd", required = true)
@@ -159,7 +162,7 @@ public InterestAmount1 setAcrdIntrstAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -171,7 +174,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestAmount1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation1.java
index 157544b9d..880836e9e 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@
})
public class InterestCalculation1 {
- @XmlElement(name = "ClctnDt", required = true)
+ @XmlElement(name = "ClctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clctnDt;
@XmlElement(name = "FctvPrncplAmt", required = true)
@@ -63,7 +66,7 @@ public class InterestCalculation1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -75,7 +78,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestCalculation1 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation2.java
index b433d52ba..33cf8f0d8 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class InterestCalculation2 {
- @XmlElement(name = "ClctnDt", required = true)
+ @XmlElement(name = "ClctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clctnDt;
@XmlElement(name = "CollAcctId")
@@ -65,7 +68,7 @@ public class InterestCalculation2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestCalculation2 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation3.java
index 12a5557a9..7725c84da 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class InterestCalculation3 {
- @XmlElement(name = "ClctnDt", required = true)
+ @XmlElement(name = "ClctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clctnDt;
@XmlElement(name = "CollAcctId")
@@ -65,7 +68,7 @@ public class InterestCalculation3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestCalculation3 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation4.java
index c56d9e169..34870a346 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestCalculation4.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class InterestCalculation4 {
- @XmlElement(name = "ClctnDt", required = true)
+ @XmlElement(name = "ClctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clctnDt;
@XmlElement(name = "CollAcctId")
@@ -65,7 +68,7 @@ public class InterestCalculation4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestCalculation4 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestResult1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestResult1.java
index 911334148..36990f2ec 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestResult1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestResult1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class InterestResult1 {
protected ActiveCurrencyAndAmount intrstDueToA;
@XmlElement(name = "IntrstDueToB")
protected ActiveCurrencyAndAmount intrstDueToB;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstMtd", required = true)
@@ -100,7 +103,7 @@ public InterestResult1 setIntrstDueToB(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -112,7 +115,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestResult1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement1.java
index cbd2a92fe..2d01273a9 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class InterestStatement1 {
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToA;
@XmlElement(name = "TtlIntrstAmtDueToB")
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToB;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstPmtReqId")
@@ -126,7 +129,7 @@ public InterestStatement1 setTtlIntrstAmtDueToB(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestStatement1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement2.java
index b80586e85..c8fce88e5 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class InterestStatement2 {
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToA;
@XmlElement(name = "TtlIntrstAmtDueToB")
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToB;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstPmtReqId")
@@ -126,7 +129,7 @@ public InterestStatement2 setTtlIntrstAmtDueToB(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestStatement2 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement3.java
index 8bfffff5a..7e0769ae5 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class InterestStatement3 {
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToA;
@XmlElement(name = "TtlIntrstAmtDueToB")
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToB;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstPmtReqId")
@@ -126,7 +129,7 @@ public InterestStatement3 setTtlIntrstAmtDueToB(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestStatement3 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement4.java
index 8673040af..4cdf7570f 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestStatement4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class InterestStatement4 {
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToA;
@XmlElement(name = "TtlIntrstAmtDueToB")
protected ActiveCurrencyAndAmount ttlIntrstAmtDueToB;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "IntrstPmtReqId")
@@ -126,7 +129,7 @@ public InterestStatement4 setTtlIntrstAmtDueToB(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestStatement4 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral1.java
index 7765aecca..04006c294 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class OtherCollateral1 {
protected DateFormat14Choice xpryDt;
@XmlElement(name = "Issr", required = true)
protected PartyIdentification33Choice issr;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -215,7 +218,7 @@ public OtherCollateral1 setIssr(PartyIdentification33Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -227,7 +230,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral2.java
index cd530add3..98b649621 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class OtherCollateral2 {
protected Boolean ltdCvrgInd;
@XmlElement(name = "Issr")
protected PartyIdentification33Choice issr;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -305,7 +308,7 @@ public OtherCollateral2 setIssr(PartyIdentification33Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -317,7 +320,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral2 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral3.java
index cbbae6e42..9d9039c2d 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -65,7 +67,8 @@ public class OtherCollateral3 {
protected PartyIdentification33Choice issr;
@XmlElement(name = "BlckdQty")
protected FinancialInstrumentQuantity1Choice blckdQty;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -361,7 +364,7 @@ public OtherCollateral3 setBlckdQty(FinancialInstrumentQuantity1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -373,7 +376,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral3 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral4.java
index 799a4a214..638f5f681 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral4.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,7 +64,8 @@ public class OtherCollateral4 {
protected Boolean ltdCvrgInd;
@XmlElement(name = "Issr")
protected PartyIdentification33Choice issr;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -333,7 +336,7 @@ public OtherCollateral4 setIssr(PartyIdentification33Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -345,7 +348,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral4 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral5.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral5.java
index 404e41671..1749a8dcb 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral5.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class OtherCollateral5 {
protected Boolean ltdCvrgInd;
@XmlElement(name = "Issr")
protected PartyIdentification100Choice issr;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -305,7 +308,7 @@ public OtherCollateral5 setIssr(PartyIdentification100Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -317,7 +320,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral5 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral6.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral6.java
index ef0a2a1aa..de3617164 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral6.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -65,7 +67,8 @@ public class OtherCollateral6 {
protected PartyIdentification100Choice issr;
@XmlElement(name = "BlckdQty")
protected FinancialInstrumentQuantity1Choice blckdQty;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -361,7 +364,7 @@ public OtherCollateral6 setBlckdQty(FinancialInstrumentQuantity1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -373,7 +376,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral6 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral7.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral7.java
index 906c947aa..44fb9baa6 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral7.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,7 +64,8 @@ public class OtherCollateral7 {
protected Boolean ltdCvrgInd;
@XmlElement(name = "Issr")
protected PartyIdentification100Choice issr;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -333,7 +336,7 @@ public OtherCollateral7 setIssr(PartyIdentification100Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -345,7 +348,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral7 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral8.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral8.java
index 332e29cb1..b6d7004b1 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral8.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OtherCollateral8.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -65,7 +67,8 @@ public class OtherCollateral8 {
protected PartyIdentification178Choice issr;
@XmlElement(name = "BlckdQty")
protected FinancialInstrumentQuantity1Choice blckdQty;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -361,7 +364,7 @@ public OtherCollateral8 setBlckdQty(FinancialInstrumentQuantity1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -373,7 +376,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OtherCollateral8 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason21FormatChoice.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason21FormatChoice.java
index 87b8e0e05..6efde91fa 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason21FormatChoice.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RejectionReason21FormatChoice.java
@@ -25,10 +25,10 @@
})
public class RejectionReason21FormatChoice {
- @XmlElement(name = "Cd")
+ @XmlElement(name = "Cd", required = true)
@XmlSchemaType(name = "string")
protected InterestRejectionReason1Code cd;
- @XmlElement(name = "Prtry")
+ @XmlElement(name = "Prtry", required = true)
protected GenericIdentification30 prtry;
/**
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters5.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters5.java
index 068858c5a..4d32298b2 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters5.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class ReportParameters5 {
protected EventFrequency6Code frqcy;
@XmlElement(name = "RptCcy", required = true)
protected String rptCcy;
- @XmlElement(name = "ClctnDt")
+ @XmlElement(name = "ClctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clctnDt;
@@ -147,7 +150,7 @@ public ReportParameters5 setRptCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportParameters5 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters6.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters6.java
index 98e73e552..bd33ef9cf 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters6.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class ReportParameters6 {
protected EventFrequency6Code frqcy;
@XmlElement(name = "RptCcy", required = true)
protected String rptCcy;
- @XmlElement(name = "ClctnDt")
+ @XmlElement(name = "ClctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clctnDt;
@@ -147,7 +150,7 @@ public ReportParameters6 setRptCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportParameters6 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral1.java
index a9bc8e561..46f418f54 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class SecuritiesCollateral1 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@@ -231,7 +234,7 @@ public SecuritiesCollateral1 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -243,7 +246,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral2.java
index cb9c5a851..35741f072 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class SecuritiesCollateral2 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -349,7 +352,7 @@ public SecuritiesCollateral2 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -361,7 +364,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral2 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral3.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral3.java
index 3f1e61cd5..f1a3309b7 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral3.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class SecuritiesCollateral3 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -296,7 +299,7 @@ public SecuritiesCollateral3 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral3 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral4.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral4.java
index a0b6d7bf9..5ce0340c7 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral4.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral4.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class SecuritiesCollateral4 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -324,7 +327,7 @@ public SecuritiesCollateral4 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -336,7 +339,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral4 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral5.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral5.java
index 1cafc737d..f5772a16a 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral5.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class SecuritiesCollateral5 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -296,7 +299,7 @@ public SecuritiesCollateral5 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral5 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral6.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral6.java
index 646c46b10..cdcfc3f55 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral6.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class SecuritiesCollateral6 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -349,7 +352,7 @@ public SecuritiesCollateral6 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -361,7 +364,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral6 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral7.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral7.java
index d224acf0f..1ebbf9417 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral7.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class SecuritiesCollateral7 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -324,7 +327,7 @@ public SecuritiesCollateral7 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -336,7 +339,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral7 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral8.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral8.java
index 81d0a89e7..3a8f327d0 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral8.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral8.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class SecuritiesCollateral8 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -296,7 +299,7 @@ public SecuritiesCollateral8 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral8 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral9.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral9.java
index b3c29086b..acc26e295 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral9.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesCollateral9.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class SecuritiesCollateral9 {
protected BigDecimal hrcut;
@XmlElement(name = "CollVal")
protected ActiveCurrencyAndAmount collVal;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "SfkpgAcct")
@@ -349,7 +352,7 @@ public SecuritiesCollateral9 setCollVal(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -361,7 +364,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesCollateral9 setValDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails102.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails102.java
index f236a6379..560d28078 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails102.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails102.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class SettlementDetails102 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "SttlmPties")
@@ -40,7 +43,7 @@ public class SettlementDetails102 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementDetails102 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails118.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails118.java
index 8cd85dade..c0f4559ff 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails118.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails118.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class SettlementDetails118 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "SttlmPties")
@@ -40,7 +43,7 @@ public class SettlementDetails118 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementDetails118 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails88.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails88.java
index a177093b9..721335535 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails88.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDetails88.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class SettlementDetails88 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "SttlmPties")
@@ -40,7 +43,7 @@ public class SettlementDetails88 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -52,7 +55,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementDetails88 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary1.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary1.java
index 4c6a6ec48..cddf78674 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary1.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary1.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +50,12 @@ public class Summary1 {
@XmlElement(name = "NetXcssDfcitInd")
@XmlSchemaType(name = "string")
protected ShortLong1Code netXcssDfcitInd;
- @XmlElement(name = "ValtnDtTm", required = true)
+ @XmlElement(name = "ValtnDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valtnDtTm;
- @XmlElement(name = "ReqdSttlmDt")
+ @XmlElement(name = "ReqdSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdSttlmDt;
@XmlElement(name = "SummryDtls")
@@ -211,7 +216,7 @@ public Summary1 setNetXcssDfcitInd(ShortLong1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDtTm() {
@@ -223,7 +228,7 @@ public XMLGregorianCalendar getValtnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Summary1 setValtnDtTm(XMLGregorianCalendar value) {
@@ -236,7 +241,7 @@ public Summary1 setValtnDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdSttlmDt() {
@@ -248,7 +253,7 @@ public XMLGregorianCalendar getReqdSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Summary1 setReqdSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary2.java b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary2.java
index 133a93680..5ae4a3b9f 100644
--- a/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary2.java
+++ b/model-colr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Summary2.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,10 +50,12 @@ public class Summary2 {
@XmlElement(name = "NetXcssDfcitInd")
@XmlSchemaType(name = "string")
protected ShortLong1Code netXcssDfcitInd;
- @XmlElement(name = "ValtnDtTm", required = true)
+ @XmlElement(name = "ValtnDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valtnDtTm;
- @XmlElement(name = "ReqdSttlmDt")
+ @XmlElement(name = "ReqdSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdSttlmDt;
@XmlElement(name = "SummryDtls")
@@ -211,7 +216,7 @@ public Summary2 setNetXcssDfcitInd(ShortLong1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDtTm() {
@@ -223,7 +228,7 @@ public XMLGregorianCalendar getValtnDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Summary2 setValtnDtTm(XMLGregorianCalendar value) {
@@ -236,7 +241,7 @@ public Summary2 setValtnDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdSttlmDt() {
@@ -248,7 +253,7 @@ public XMLGregorianCalendar getReqdSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Summary2 setReqdSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand1.java
index f959ad8fa..ea0192096 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class ATMCommand1 {
@XmlElement(name = "Urgcy", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel2Code urgcy;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CmdId")
@@ -98,7 +101,7 @@ public ATMCommand1 setUrgcy(TMSContactLevel2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -110,7 +113,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand1 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand7.java
index ad9a4bc97..3e5ee265f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMCommand7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class ATMCommand7 {
@XmlElement(name = "Urgcy", required = true)
@XmlSchemaType(name = "string")
protected TMSContactLevel2Code urgcy;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CmdId")
@@ -98,7 +101,7 @@ public ATMCommand7 setUrgcy(TMSContactLevel2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -110,7 +113,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ATMCommand7 setDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMDevice2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMDevice2Code.java
index e93c3a626..b36a3369c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMDevice2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ATMDevice2Code.java
@@ -82,7 +82,7 @@ public enum ATMDevice2Code {
CSHD,
/**
- * Device accepting in-out of items as coupons, documents, bills and coins.
+ * Device accepting in-out of items as coupons, documents, bills and coins.
*
*/
CSHI,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport19.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport19.java
index 1e0d4a472..6f572029e 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport19.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AccountReport19.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AccountReport19 {
protected BigDecimal elctrncSeqNb;
@XmlElement(name = "LglSeqNb")
protected BigDecimal lglSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "FrToDt")
@@ -180,7 +183,7 @@ public AccountReport19 setLglSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AccountReport19 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Adjustment6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Adjustment6.java
index 2bdbcd343..214a2cbf7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Adjustment6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Adjustment6.java
@@ -13,7 +13,7 @@
/**
- * Modification on the value of goods and / or services. For example: rebate, discount, surcharge
+ * Modification on the value of goods and / or services. For example: rebate, discount, surcharge.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement1.java
index 8003f556b..a1815a88c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Agreement1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class Agreement1 {
protected String desc;
@XmlElement(name = "Id")
protected String id;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Ccy")
@@ -45,7 +48,8 @@ public class Agreement1 {
@XmlElement(name = "TermntnTp")
@XmlSchemaType(name = "string")
protected TerminationType1Code termntnTp;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "DlvryTp")
@@ -109,7 +113,7 @@ public Agreement1 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -121,7 +125,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Agreement1 setDt(XMLGregorianCalendar value) {
@@ -184,7 +188,7 @@ public Agreement1 setTermntnTp(TerminationType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -196,7 +200,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Agreement1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails1.java
index a9364184c..8fd5910f0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AmendmentInformationDetails1 {
protected BranchAndFinancialInstitutionIdentification3 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount7 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -262,7 +265,7 @@ public AmendmentInformationDetails1 setOrgnlDbtrAgtAcct(CashAccount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -274,7 +277,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails1 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails10.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails10.java
index c57491eb8..5896ae540 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails10.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class AmendmentInformationDetails10 {
protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount24 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -264,7 +267,7 @@ public AmendmentInformationDetails10 setOrgnlDbtrAgtAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -276,7 +279,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails10 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails11.java
index 987b82e58..60ce96c8a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AmendmentInformationDetails11 {
protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount24 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -267,7 +270,7 @@ public AmendmentInformationDetails11 setOrgnlDbtrAgtAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails11 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails12.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails12.java
index f85823fcb..c084bf1e4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails12.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AmendmentInformationDetails12 {
protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount24 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -267,7 +270,7 @@ public AmendmentInformationDetails12 setOrgnlDbtrAgtAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails12 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails13.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails13.java
index ca91d90f8..dd7565859 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails13.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AmendmentInformationDetails13 {
protected BranchAndFinancialInstitutionIdentification6 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount38 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -267,7 +270,7 @@ public AmendmentInformationDetails13 setOrgnlDbtrAgtAcct(CashAccount38 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails13 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails14.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails14.java
index b00102e8d..dfb297717 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails14.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails14.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class AmendmentInformationDetails14 {
protected BranchAndFinancialInstitutionIdentification6 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount40 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -267,7 +270,7 @@ public AmendmentInformationDetails14 setOrgnlDbtrAgtAcct(CashAccount40 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails14 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails6.java
index 8524a024d..b334e981c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AmendmentInformationDetails6 {
protected BranchAndFinancialInstitutionIdentification4 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount16 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -262,7 +265,7 @@ public AmendmentInformationDetails6 setOrgnlDbtrAgtAcct(CashAccount16 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -274,7 +277,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails6 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails8.java
index bb68a78af..fd7927899 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AmendmentInformationDetails8 {
protected BranchAndFinancialInstitutionIdentification5 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount24 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -262,7 +265,7 @@ public AmendmentInformationDetails8 setOrgnlDbtrAgtAcct(CashAccount24 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -274,7 +277,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails8 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate1.java
index 11c35bae8..5ae07facd 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class AmountsAndValueDate1 {
protected ActiveOrHistoricCurrencyAndAmount tradgSdBuyAmt;
@XmlElement(name = "TradgSdSellAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount tradgSdSellAmt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@@ -90,7 +93,7 @@ public AmountsAndValueDate1 setTradgSdSellAmt(ActiveOrHistoricCurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmountsAndValueDate1 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate4.java
index 46686f43e..e77dd1745 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class AmountsAndValueDate4 {
protected ActiveOrHistoricCurrencyAndAmount putAmt;
@XmlElement(name = "OptnSttlmCcy")
protected String optnSttlmCcy;
- @XmlElement(name = "FnlSttlmDt", required = true)
+ @XmlElement(name = "FnlSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlSttlmDt;
@@ -118,7 +121,7 @@ public AmountsAndValueDate4 setOptnSttlmCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlSttlmDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getFnlSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmountsAndValueDate4 setFnlSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate5.java
index 50169f4da..3bf82d60f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmountsAndValueDate5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class AmountsAndValueDate5 {
protected ActiveOrHistoricCurrencyAndAmount putAmt;
@XmlElement(name = "OptnSttlmCcy")
protected String optnSttlmCcy;
- @XmlElement(name = "FnlSttlmDt")
+ @XmlElement(name = "FnlSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlSttlmDt;
@@ -118,7 +121,7 @@ public AmountsAndValueDate5 setOptnSttlmCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlSttlmDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getFnlSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmountsAndValueDate5 setFnlSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AttributeType1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AttributeType1Code.java
index 790906bfd..39868cd9f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AttributeType1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AttributeType1Code.java
@@ -41,7 +41,7 @@ public enum AttributeType1Code {
LATT,
/**
- * Organization name of the attribute (ASN.1 Object Identifier: id-at-organizationName).
+ * Organization name of the attribute (ASN.1 Object Identifier: id-at-organizationName).
*
*/
OATT,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuthenticationMethod1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuthenticationMethod1Code.java
index 8c1fe2330..75721d6f0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuthenticationMethod1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AuthenticationMethod1Code.java
@@ -47,7 +47,7 @@ public enum AuthenticationMethod1Code {
BYPS,
/**
- * On-line PIN authentication (Personal Identification Number).
+ * On-line PIN authentication (Personal Identification Number).
*
*/
NPIN,
@@ -83,7 +83,7 @@ public enum AuthenticationMethod1Code {
MERC,
/**
- * Secure electronic transaction with cardholder X.509 certificate.
+ * Electronic commerce transaction secured with the X.509 certificate of a customer.
*
*/
SCRT,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtend1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtend1Choice.java
index 3d43db0fc..ef4ac1826 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtend1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtend1Choice.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class AutoExtend1Choice {
protected BigDecimal mnths;
@XmlElement(name = "Yrs")
protected BigDecimal yrs;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@@ -119,7 +122,7 @@ public AutoExtend1Choice setYrs(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -131,7 +134,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AutoExtend1Choice setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtension1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtension1.java
index db3ada6e9..e0406ac5c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtension1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AutoExtension1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class AutoExtension1 {
@XmlElement(name = "Prd")
protected AutoExtend1Choice prd;
- @XmlElement(name = "FnlXpryDt")
+ @XmlElement(name = "FnlXpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlXpryDt;
@XmlElement(name = "NonXtnsnNtfctn")
@@ -67,7 +70,7 @@ public AutoExtension1 setPrd(AutoExtend1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlXpryDt() {
@@ -79,7 +82,7 @@ public XMLGregorianCalendar getFnlXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AutoExtension1 setFnlXpryDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeader5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeader5.java
index 43608e850..1531802cb 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeader5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeader5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,7 +50,8 @@ public class BusinessApplicationHeader5 {
protected String msgDefIdr;
@XmlElement(name = "BizSvc")
protected String bizSvc;
- @XmlElement(name = "CreDt", required = true)
+ @XmlElement(name = "CreDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDt;
@XmlElement(name = "CpyDplct")
@@ -216,7 +219,7 @@ public BusinessApplicationHeader5 setBizSvc(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDt() {
@@ -228,7 +231,7 @@ public XMLGregorianCalendar getCreDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessApplicationHeader5 setCreDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeaderV02Impl.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeaderV02Impl.java
index 60bbd8c5d..570199d3d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeaderV02Impl.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessApplicationHeaderV02Impl.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -60,10 +62,12 @@ public class BusinessApplicationHeaderV02Impl {
protected String bizSvc;
@XmlElement(name = "MktPrctc")
protected ImplementationSpecification1 mktPrctc;
- @XmlElement(name = "CreDt", required = true)
+ @XmlElement(name = "CreDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDt;
- @XmlElement(name = "BizPrcgDt")
+ @XmlElement(name = "BizPrcgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar bizPrcgDt;
@XmlElement(name = "CpyDplct")
@@ -259,7 +263,7 @@ public BusinessApplicationHeaderV02Impl setMktPrctc(ImplementationSpecification1
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDt() {
@@ -271,7 +275,7 @@ public XMLGregorianCalendar getCreDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessApplicationHeaderV02Impl setCreDt(XMLGregorianCalendar value) {
@@ -284,7 +288,7 @@ public BusinessApplicationHeaderV02Impl setCreDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBizPrcgDt() {
@@ -296,7 +300,7 @@ public XMLGregorianCalendar getBizPrcgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessApplicationHeaderV02Impl setBizPrcgDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessLetter1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessLetter1.java
index a334deaa0..ace82f028 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessLetter1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/BusinessLetter1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class BusinessLetter1 {
protected String applCntxt;
@XmlElement(name = "LttrIdr", required = true)
protected QualifiedDocumentInformation1 lttrIdr;
- @XmlElement(name = "Dt", required = true)
+ @XmlElement(name = "Dt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "RltdLttr")
@@ -152,7 +155,7 @@ public BusinessLetter1 setLttrIdr(QualifiedDocumentInformation1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public BusinessLetter1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardDataReading5Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardDataReading5Code.java
index f8297f402..4b5feb3d3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardDataReading5Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardDataReading5Code.java
@@ -57,7 +57,7 @@ public enum CardDataReading5Code {
MGST,
/**
- * ICC (Integrated Circuit Card) with contact containing software applications conform to ISO 7816.
+ * ICC (Integrated Circuit Card) with contact containing software applications conform to ISO 7816.
*
*/
CICC,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardEntry2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardEntry2.java
index dbbcb31cf..13b82b944 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardEntry2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardEntry2.java
@@ -12,7 +12,7 @@
/**
- * card transaction entry.
+ * Card transaction entry.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction2.java
index e3bfe1fb9..c984c813c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardIndividualTransaction2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -57,7 +59,8 @@ public class CardIndividualTransaction2 {
protected TransactionIdentifier1 txId;
@XmlElement(name = "Pdct")
protected Product2 pdct;
- @XmlElement(name = "VldtnDt")
+ @XmlElement(name = "VldtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar vldtnDt;
@XmlElement(name = "VldtnSeqNb")
@@ -318,7 +321,7 @@ public CardIndividualTransaction2 setPdct(Product2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldtnDt() {
@@ -330,7 +333,7 @@ public XMLGregorianCalendar getVldtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CardIndividualTransaction2 setVldtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardSequenceNumberRange1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardSequenceNumberRange1.java
index 45cd6ce8c..f858c4c8f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardSequenceNumberRange1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardSequenceNumberRange1.java
@@ -12,7 +12,7 @@
/**
- * Range of sequence numbers related to card transactions
+ * Range of sequence numbers related to card transactions.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardType1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardType1Code.java
index a7252f766..a96d4fca1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardType1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CardType1Code.java
@@ -32,7 +32,7 @@ public enum CardType1Code {
CRDT,
/**
- * Card enabling the holder to have its purchases directly charged to its account. The card may also combine other functions, eg, cash card or cheque guaranteed card.
+ * Card enabling the holder to have its purchases directly charged to its account. The card may also combine other functions, for example, cash card or cheque guaranteed card.
*
*/
DBIT;
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAvailabilityDate1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAvailabilityDate1Choice.java
index 2898e873c..c2b25a652 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAvailabilityDate1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashAvailabilityDate1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class CashAvailabilityDate1Choice {
@XmlElement(name = "NbOfDays")
protected String nbOfDays;
- @XmlElement(name = "ActlDt")
+ @XmlElement(name = "ActlDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar actlDt;
@@ -62,7 +65,7 @@ public CashAvailabilityDate1Choice setNbOfDays(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActlDt() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getActlDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashAvailabilityDate1Choice setActlDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral5.java
index 60ae2d127..4382b2b68 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CashCollateral5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,10 +48,12 @@ public class CashCollateral5 {
@XmlElement(name = "DpstTp")
@XmlSchemaType(name = "string")
protected DepositType1Code dpstTp;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "ValDt")
+ @XmlElement(name = "ValDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "XchgRate")
@@ -189,7 +193,7 @@ public CashCollateral5 setDpstTp(DepositType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -201,7 +205,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral5 setMtrtyDt(XMLGregorianCalendar value) {
@@ -214,7 +218,7 @@ public CashCollateral5 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -226,7 +230,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CashCollateral5 setValDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque11.java
index cf06102eb..a907dd8d5 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class Cheque11 {
@XmlElement(name = "InstrPrty")
@XmlSchemaType(name = "string")
protected Priority2Code instrPrty;
- @XmlElement(name = "ChqMtrtyDt")
+ @XmlElement(name = "ChqMtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chqMtrtyDt;
@XmlElement(name = "FrmsCd")
@@ -221,7 +224,7 @@ public Cheque11 setInstrPrty(Priority2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChqMtrtyDt() {
@@ -233,7 +236,7 @@ public XMLGregorianCalendar getChqMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Cheque11 setChqMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque7.java
index 3c6206f4a..4935f82eb 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Cheque7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,7 +54,8 @@ public class Cheque7 {
@XmlElement(name = "InstrPrty")
@XmlSchemaType(name = "string")
protected Priority2Code instrPrty;
- @XmlElement(name = "ChqMtrtyDt")
+ @XmlElement(name = "ChqMtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar chqMtrtyDt;
@XmlElement(name = "FrmsCd")
@@ -221,7 +224,7 @@ public Cheque7 setInstrPrty(Priority2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getChqMtrtyDt() {
@@ -233,7 +236,7 @@ public XMLGregorianCalendar getChqMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Cheque7 setChqMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ChequeDelivery1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ChequeDelivery1Code.java
index 624a24be0..2a804726e 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ChequeDelivery1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ChequeDelivery1Code.java
@@ -78,7 +78,7 @@ public enum ChequeDelivery1Code {
PUDB,
/**
- * Cheque will be picked up by the creditor.
+ * Cheque will be picked up by the creditor
*
*/
PUCD,
@@ -90,7 +90,7 @@ public enum ChequeDelivery1Code {
PUFA,
/**
- * Cheque is to be sent through registered mail services to debtor.
+ * Cheque is to be sent through registered mail services to debtor
*
*/
RGDB,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData2.java
index bdbf5b2ba..7353bc2a5 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ClosingData2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class ClosingData2 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -55,7 +58,7 @@ public class ClosingData2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -67,7 +70,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ClosingData2 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferMandateData1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferMandateData1.java
index 89b2a37d2..3aed49a19 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferMandateData1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferMandateData1.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,18 +40,22 @@ public class CreditTransferMandateData1 {
protected String mndtId;
@XmlElement(name = "Tp")
protected MandateTypeInformation2 tp;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
- @XmlElement(name = "DtOfVrfctn")
+ @XmlElement(name = "DtOfVrfctn", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtOfVrfctn;
@XmlElement(name = "ElctrncSgntr")
protected byte[] elctrncSgntr;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
- @XmlElement(name = "FnlPmtDt")
+ @XmlElement(name = "FnlPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlPmtDt;
@XmlElement(name = "Frqcy")
@@ -111,7 +118,7 @@ public CreditTransferMandateData1 setTp(MandateTypeInformation2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -123,7 +130,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferMandateData1 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -136,7 +143,7 @@ public CreditTransferMandateData1 setDtOfSgntr(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfVrfctn() {
@@ -148,7 +155,7 @@ public XMLGregorianCalendar getDtOfVrfctn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferMandateData1 setDtOfVrfctn(XMLGregorianCalendar value) {
@@ -184,7 +191,7 @@ public CreditTransferMandateData1 setElctrncSgntr(byte[] value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -196,7 +203,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferMandateData1 setFrstPmtDt(XMLGregorianCalendar value) {
@@ -209,7 +216,7 @@ public CreditTransferMandateData1 setFrstPmtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlPmtDt() {
@@ -221,7 +228,7 @@ public XMLGregorianCalendar getFnlPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferMandateData1 setFnlPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction23.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction23.java
index 47632ca5a..261b1a37f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction23.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction23.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class CreditTransferTransaction23 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -205,7 +208,7 @@ public CreditTransferTransaction23 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction23 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction9.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction9.java
index 0603e465f..476b4c5bc 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction9.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction9.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class CreditTransferTransaction9 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstgAgt")
@@ -196,7 +199,7 @@ public CreditTransferTransaction9 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount v
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -208,7 +211,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction9 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey13.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey13.java
index 4e199a398..4c03a97a7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey13.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CryptographicKey13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,10 +50,12 @@ public class CryptographicKey13 {
@XmlElement(name = "Fctn")
@XmlSchemaType(name = "string")
protected List fctn;
- @XmlElement(name = "ActvtnDt")
+ @XmlElement(name = "ActvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar actvtnDt;
- @XmlElement(name = "DeactvtnDt")
+ @XmlElement(name = "DeactvtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar deactvtnDt;
@XmlElement(name = "KeyVal")
@@ -193,7 +197,7 @@ public List getFctn() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getActvtnDt() {
@@ -205,7 +209,7 @@ public XMLGregorianCalendar getActvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey13 setActvtnDt(XMLGregorianCalendar value) {
@@ -218,7 +222,7 @@ public CryptographicKey13 setActvtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDeactvtnDt() {
@@ -230,7 +234,7 @@ public XMLGregorianCalendar getDeactvtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CryptographicKey13 setDeactvtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion2.java
index 447a647d9..5d7c3ef88 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyConversion2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -52,10 +54,12 @@ public class CurrencyConversion2 {
protected BigDecimal xchgRateDcml;
@XmlElement(name = "NvrtdXchgRate")
protected BigDecimal nvrtdXchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@XmlElement(name = "SrcCcy", required = true)
@@ -224,7 +228,7 @@ public CurrencyConversion2 setNvrtdXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -236,7 +240,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion2 setQtnDt(XMLGregorianCalendar value) {
@@ -249,7 +253,7 @@ public CurrencyConversion2 setQtnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -261,7 +265,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyConversion2 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange3.java
index 77c85b4ab..5dd094434 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class CurrencyExchange3 {
protected BigDecimal xchgRate;
@XmlElement(name = "CtrctId")
protected String ctrctId;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@@ -175,7 +178,7 @@ public CurrencyExchange3 setCtrctId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -187,7 +190,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchange3 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange5.java
index 9efbe4882..f2025f2ca 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CurrencyExchange5.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class CurrencyExchange5 {
protected BigDecimal xchgRate;
@XmlElement(name = "CtrctId")
protected String ctrctId;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@@ -175,7 +178,7 @@ public CurrencyExchange5 setCtrctId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -187,7 +190,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CurrencyExchange5 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount1.java
index 9b17f7465..f6ce4a251 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CustomerAccount1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -70,7 +72,8 @@ public class CustomerAccount1 {
@XmlElement(name = "StmtCycl")
@XmlSchemaType(name = "string")
protected Frequency3Code stmtCycl;
- @XmlElement(name = "ClsgDt")
+ @XmlElement(name = "ClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clsgDt;
@XmlElement(name = "Rstrctn")
@@ -406,7 +409,7 @@ public CustomerAccount1 setStmtCycl(Frequency3Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClsgDt() {
@@ -418,7 +421,7 @@ public XMLGregorianCalendar getClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CustomerAccount1 setClsgDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime1Choice.java
index 59418d9da..0319e6cca 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime1Choice.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +29,12 @@
})
public class DateAndDateTime1Choice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@@ -38,7 +43,7 @@ public class DateAndDateTime1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -50,7 +55,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTime1Choice setDt(XMLGregorianCalendar value) {
@@ -63,7 +68,7 @@ public DateAndDateTime1Choice setDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -75,7 +80,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTime1Choice setDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime2Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime2Choice.java
index b13e38e3b..b5b6f3ca9 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime2Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTime2Choice.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +29,12 @@
})
public class DateAndDateTime2Choice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@@ -38,7 +43,7 @@ public class DateAndDateTime2Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -50,7 +55,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTime2Choice setDt(XMLGregorianCalendar value) {
@@ -63,7 +68,7 @@ public DateAndDateTime2Choice setDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -75,7 +80,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTime2Choice setDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTimeChoice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTimeChoice.java
index 8b527ae63..e9a4d8f73 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTimeChoice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndDateTimeChoice.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +29,12 @@
})
public class DateAndDateTimeChoice {
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
- @XmlElement(name = "DtTm")
+ @XmlElement(name = "DtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@@ -38,7 +43,7 @@ public class DateAndDateTimeChoice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -50,7 +55,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTimeChoice setDt(XMLGregorianCalendar value) {
@@ -63,7 +68,7 @@ public DateAndDateTimeChoice setDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtTm() {
@@ -75,7 +80,7 @@ public XMLGregorianCalendar getDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndDateTimeChoice setDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth.java
index ecb217935..a9e835276 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class DateAndPlaceOfBirth {
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "PrvcOfBirth")
@@ -43,7 +46,7 @@ public class DateAndPlaceOfBirth {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPlaceOfBirth setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth1.java
index 264c2273b..dcbf08365 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class DateAndPlaceOfBirth1 {
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "PrvcOfBirth")
@@ -43,7 +46,7 @@ public class DateAndPlaceOfBirth1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPlaceOfBirth1 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth2.java
index f2e92beef..ecc324f70 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateAndPlaceOfBirth2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class DateAndPlaceOfBirth2 {
- @XmlElement(name = "BirthDt", required = true)
+ @XmlElement(name = "BirthDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "PrvcOfBirth")
@@ -43,7 +46,7 @@ public class DateAndPlaceOfBirth2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getBirthDt() {
@@ -55,7 +58,7 @@ public XMLGregorianCalendar getBirthDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateAndPlaceOfBirth2 setBirthDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateInformation1.java
index 3269b6372..53780cfd4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateInformation1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class DateInformation1 {
- @XmlElement(name = "StartDt", required = true)
+ @XmlElement(name = "StartDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
@XmlElement(name = "Frqcy", required = true)
@@ -41,7 +44,7 @@ public class DateInformation1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateInformation1 setStartDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1.java
index acf3c108f..44d8153dd 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DatePeriod1 {
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt", required = true)
+ @XmlElement(name = "ToDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class DatePeriod1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod1 setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DatePeriod1 setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod1 setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2.java
index a389337f5..679f3e4f3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DatePeriod2 {
- @XmlElement(name = "FrDt", required = true)
+ @XmlElement(name = "FrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt", required = true)
+ @XmlElement(name = "ToDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class DatePeriod2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod2 setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DatePeriod2 setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod2 setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java
index a0e8c80eb..f415489ce 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriod3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DatePeriod3 {
- @XmlElement(name = "FrDt", required = true)
+ @XmlElement(name = "FrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class DatePeriod3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod3 setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DatePeriod3 setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriod3 setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails.java
index c8e8f8233..c7d3582eb 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DatePeriodDetails {
- @XmlElement(name = "FrDt", required = true)
+ @XmlElement(name = "FrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt", required = true)
+ @XmlElement(name = "ToDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class DatePeriodDetails {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DatePeriodDetails setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails1.java
index 61b96e649..bd885c1f9 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DatePeriodDetails1 {
- @XmlElement(name = "FrDt", required = true)
+ @XmlElement(name = "FrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class DatePeriodDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails1 setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DatePeriodDetails1 setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodDetails1 setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodSearch1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodSearch1Choice.java
index f44d22326..d2885f227 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodSearch1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DatePeriodSearch1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,18 +31,22 @@
})
public class DatePeriodSearch1Choice {
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrToDt")
protected DatePeriod2 frToDt;
- @XmlElement(name = "EQDt")
+ @XmlElement(name = "EQDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar eqDt;
- @XmlElement(name = "NEQDt")
+ @XmlElement(name = "NEQDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar neqDt;
@@ -49,7 +55,7 @@ public class DatePeriodSearch1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -61,7 +67,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodSearch1Choice setFrDt(XMLGregorianCalendar value) {
@@ -74,7 +80,7 @@ public DatePeriodSearch1Choice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -86,7 +92,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodSearch1Choice setToDt(XMLGregorianCalendar value) {
@@ -124,7 +130,7 @@ public DatePeriodSearch1Choice setFrToDt(DatePeriod2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEQDt() {
@@ -136,7 +142,7 @@ public XMLGregorianCalendar getEQDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodSearch1Choice setEQDt(XMLGregorianCalendar value) {
@@ -149,7 +155,7 @@ public DatePeriodSearch1Choice setEQDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNEQDt() {
@@ -161,7 +167,7 @@ public XMLGregorianCalendar getNEQDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DatePeriodSearch1Choice setNEQDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateSearchChoice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateSearchChoice.java
index 6be29a6bb..b5e496744 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateSearchChoice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateSearchChoice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,18 +31,22 @@
})
public class DateSearchChoice {
- @XmlElement(name = "FrDt")
+ @XmlElement(name = "FrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt")
+ @XmlElement(name = "ToDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@XmlElement(name = "FrToDt")
protected DatePeriodDetails frToDt;
- @XmlElement(name = "EQDt")
+ @XmlElement(name = "EQDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar eqDt;
- @XmlElement(name = "NEQDt")
+ @XmlElement(name = "NEQDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar neqDt;
@@ -49,7 +55,7 @@ public class DateSearchChoice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -61,7 +67,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateSearchChoice setFrDt(XMLGregorianCalendar value) {
@@ -74,7 +80,7 @@ public DateSearchChoice setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -86,7 +92,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateSearchChoice setToDt(XMLGregorianCalendar value) {
@@ -124,7 +130,7 @@ public DateSearchChoice setFrToDt(DatePeriodDetails value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEQDt() {
@@ -136,7 +142,7 @@ public XMLGregorianCalendar getEQDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateSearchChoice setEQDt(XMLGregorianCalendar value) {
@@ -149,7 +155,7 @@ public DateSearchChoice setEQDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNEQDt() {
@@ -161,7 +167,7 @@ public XMLGregorianCalendar getNEQDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateSearchChoice setNEQDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1.java
index 26f3daf00..960dc0273 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DateTimePeriod1 {
- @XmlElement(name = "FrDtTm", required = true)
+ @XmlElement(name = "FrDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm", required = true)
+ @XmlElement(name = "ToDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@@ -38,7 +42,7 @@ public class DateTimePeriod1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod1 setFrDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DateTimePeriod1 setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod1 setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1Choice.java
index a277dfd3a..d55e89ee2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriod1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class DateTimePeriod1Choice {
- @XmlElement(name = "FrDtTm")
+ @XmlElement(name = "FrDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@XmlElement(name = "DtTmRg")
@@ -41,7 +45,7 @@ public class DateTimePeriod1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod1Choice setFrDtTm(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public DateTimePeriod1Choice setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriod1Choice setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodChoice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodChoice.java
index 968733aa4..2b2ca3478 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodChoice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodChoice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,10 +29,12 @@
})
public class DateTimePeriodChoice {
- @XmlElement(name = "FrDtTm")
+ @XmlElement(name = "FrDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@XmlElement(name = "DtTmRg")
@@ -41,7 +45,7 @@ public class DateTimePeriodChoice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -53,7 +57,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodChoice setFrDtTm(XMLGregorianCalendar value) {
@@ -66,7 +70,7 @@ public DateTimePeriodChoice setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodChoice setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails.java
index 1c3e6bbb2..8c7b9f382 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DateTimePeriodDetails {
- @XmlElement(name = "FrDtTm", required = true)
+ @XmlElement(name = "FrDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm", required = true)
+ @XmlElement(name = "ToDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@@ -38,7 +42,7 @@ public class DateTimePeriodDetails {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails setFrDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DateTimePeriodDetails setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails1.java
index f756a939f..bd6601c21 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DateTimePeriodDetails1 {
- @XmlElement(name = "FrDtTm", required = true)
+ @XmlElement(name = "FrDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@@ -38,7 +42,7 @@ public class DateTimePeriodDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails1 setFrDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DateTimePeriodDetails1 setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails1 setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails2.java
index 4af435c00..27d8f3316 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimePeriodDetails2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class DateTimePeriodDetails2 {
- @XmlElement(name = "FrDtTm", required = true)
+ @XmlElement(name = "FrDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm", required = true)
+ @XmlElement(name = "ToDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@@ -38,7 +42,7 @@ public class DateTimePeriodDetails2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails2 setFrDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public DateTimePeriodDetails2 setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimePeriodDetails2 setToDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimeSearch2Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimeSearch2Choice.java
index f58c4ec94..c22712683 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimeSearch2Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DateTimeSearch2Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,18 +31,22 @@
})
public class DateTimeSearch2Choice {
- @XmlElement(name = "FrDtTm")
+ @XmlElement(name = "FrDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frDtTm;
- @XmlElement(name = "ToDtTm")
+ @XmlElement(name = "ToDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar toDtTm;
@XmlElement(name = "FrToDtTm")
protected DateTimePeriod1 frToDtTm;
- @XmlElement(name = "EQDtTm")
+ @XmlElement(name = "EQDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar eqDtTm;
- @XmlElement(name = "NEQDtTm")
+ @XmlElement(name = "NEQDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar neqDtTm;
@@ -49,7 +55,7 @@ public class DateTimeSearch2Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDtTm() {
@@ -61,7 +67,7 @@ public XMLGregorianCalendar getFrDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimeSearch2Choice setFrDtTm(XMLGregorianCalendar value) {
@@ -74,7 +80,7 @@ public DateTimeSearch2Choice setFrDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDtTm() {
@@ -86,7 +92,7 @@ public XMLGregorianCalendar getToDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimeSearch2Choice setToDtTm(XMLGregorianCalendar value) {
@@ -124,7 +130,7 @@ public DateTimeSearch2Choice setFrToDtTm(DateTimePeriod1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEQDtTm() {
@@ -136,7 +142,7 @@ public XMLGregorianCalendar getEQDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimeSearch2Choice setEQDtTm(XMLGregorianCalendar value) {
@@ -149,7 +155,7 @@ public DateTimeSearch2Choice setEQDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNEQDtTm() {
@@ -161,7 +167,7 @@ public XMLGregorianCalendar getNEQDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DateTimeSearch2Choice setNEQDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Debt1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Debt1.java
index 8225d0e7d..83c49e2de 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Debt1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Debt1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -88,25 +90,32 @@ public class Debt1 {
@XmlElement(name = "PmtFrqcy")
@XmlSchemaType(name = "string")
protected Frequency1Code pmtFrqcy;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar frstPmtDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "NxtCpnDt")
+ @XmlElement(name = "NxtCpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar nxtCpnDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "NxtFctrDt")
+ @XmlElement(name = "NxtFctrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar nxtFctrDt;
@XmlElement(name = "DayCntBsis")
@@ -125,7 +134,8 @@ public class Debt1 {
protected BigDecimal cpPrgm;
@XmlElement(name = "CPRegnTp")
protected String cpRegnTp;
- @XmlElement(name = "IntrstAcrlDt")
+ @XmlElement(name = "IntrstAcrlDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar intrstAcrlDt;
@XmlElement(name = "PutblInd")
@@ -261,7 +271,7 @@ public Debt1 setPmtFrqcy(Frequency1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -273,7 +283,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setDtdDt(XMLGregorianCalendar value) {
@@ -286,7 +296,7 @@ public Debt1 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -298,7 +308,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setFrstPmtDt(XMLGregorianCalendar value) {
@@ -311,7 +321,7 @@ public Debt1 setFrstPmtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -323,7 +333,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setMtrtyDt(XMLGregorianCalendar value) {
@@ -336,7 +346,7 @@ public Debt1 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCpnDt() {
@@ -348,7 +358,7 @@ public XMLGregorianCalendar getNxtCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setNxtCpnDt(XMLGregorianCalendar value) {
@@ -361,7 +371,7 @@ public Debt1 setNxtCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -373,7 +383,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setPutblDt(XMLGregorianCalendar value) {
@@ -386,7 +396,7 @@ public Debt1 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -398,7 +408,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -411,7 +421,7 @@ public Debt1 setNxtCllblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtFctrDt() {
@@ -423,7 +433,7 @@ public XMLGregorianCalendar getNxtFctrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setNxtFctrDt(XMLGregorianCalendar value) {
@@ -636,7 +646,7 @@ public Debt1 setCPRegnTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrstAcrlDt() {
@@ -648,7 +658,7 @@ public XMLGregorianCalendar getIntrstAcrlDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Debt1 setIntrstAcrlDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction1.java
index d4b33786c..dbe088858 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction1 {
protected PartyIdentification8 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction1 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction1 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction10.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction10.java
index af4b541c7..8a7630a15 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction10.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction10 {
protected PartyIdentification135 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction10 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction10 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction11.java
index db061de73..60f3a4dc1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction11 {
protected PartyIdentification135 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction11 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction11 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction6.java
index 59d66b58f..516ed1941 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction6 {
protected PartyIdentification32 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction6 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction6 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction7.java
index 787c1bb59..602ba4881 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction7 {
protected PartyIdentification43 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction7 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction7 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction8.java
index 5a46f6449..6bbcc0fb4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction8 {
protected PartyIdentification43 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction8 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction8 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction9.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction9.java
index bde489adb..bf2ec3d88 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction9.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction9 {
protected PartyIdentification43 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction9 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction9 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation15.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation15.java
index 6270738a1..faffef986 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation15.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation15.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class DirectDebitTransactionInformation15 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -146,7 +149,7 @@ public DirectDebitTransactionInformation15 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -158,7 +161,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation15 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation2.java
index a231f573e..2ad97f7ce 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentGeneralInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class DocumentGeneralInformation2 {
protected String docNb;
@XmlElement(name = "SndrRcvrSeqId")
protected String sndrRcvrSeqId;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
@XmlElement(name = "URL")
@@ -126,7 +129,7 @@ public DocumentGeneralInformation2 setSndrRcvrSeqId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -138,7 +141,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentGeneralInformation2 setIsseDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification22.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification22.java
index 53fb96878..b3242267c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification22.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification22.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class DocumentIdentification22 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "DtOfIsse")
+ @XmlElement(name = "DtOfIsse", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfIsse;
@@ -62,7 +65,7 @@ public DocumentIdentification22 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfIsse() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDtOfIsse() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification22 setDtOfIsse(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification23.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification23.java
index 204b985d4..a82c0554b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification23.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification23.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class DocumentIdentification23 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "DtOfIsse")
+ @XmlElement(name = "DtOfIsse", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfIsse;
@XmlElement(name = "OrdrLineId")
@@ -65,7 +68,7 @@ public DocumentIdentification23 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfIsse() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getDtOfIsse() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification23 setDtOfIsse(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification7.java
index 262d3eb98..93bf68d4a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class DocumentIdentification7 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "DtOfIsse", required = true)
+ @XmlElement(name = "DtOfIsse", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfIsse;
@@ -62,7 +65,7 @@ public DocumentIdentification7 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfIsse() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getDtOfIsse() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification7 setDtOfIsse(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification8.java
index 5ccbd4ee6..036d463d7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentIdentification8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class DocumentIdentification8 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -62,7 +65,7 @@ public DocumentIdentification8 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentIdentification8 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentLineIdentification1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentLineIdentification1.java
index 205e975c0..d1f8d8365 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentLineIdentification1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DocumentLineIdentification1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class DocumentLineIdentification1 {
protected DocumentLineType1 tp;
@XmlElement(name = "Nb")
protected String nb;
- @XmlElement(name = "RltdDt")
+ @XmlElement(name = "RltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rltdDt;
@@ -90,7 +93,7 @@ public DocumentLineIdentification1 setNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRltdDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DocumentLineIdentification1 setRltdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Equity1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Equity1.java
index 4f15819ed..dee1b91f4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Equity1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Equity1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Equity1 {
protected SecuritiesPaymentStatus1Code pmtSts;
@XmlElement(name = "ConvtblInd")
protected Boolean convtblInd;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar mtrtyDt;
@XmlElement(name = "NonPdAmt")
@@ -130,7 +133,7 @@ public Equity1 setConvtblInd(Boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -142,7 +145,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Equity1 setMtrtyDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency9Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency9Code.java
index af6767c45..0dbac3c26 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency9Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventFrequency9Code.java
@@ -116,7 +116,7 @@ public enum EventFrequency9Code {
ONDE,
/**
- * Event does not take place
+ * Event does not take place.
*
*/
NONE;
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventGroup1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventGroup1.java
index b6eb30aa3..35d9b2a35 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventGroup1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/EventGroup1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class EventGroup1 {
@XmlElement(name = "Tp")
@XmlSchemaType(name = "string")
protected EventType1Code tp;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Pric")
@@ -69,7 +72,7 @@ public EventGroup1 setTp(EventType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -81,7 +84,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public EventGroup1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java
index 42ab063b5..8fbb73cc5 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FailingReason3Code.java
@@ -119,7 +119,7 @@ public enum FailingReason3Code {
CAIS,
/**
- * Financial instruments are stolen, in dispute, under objection etc.
+ * Financial instruments are, for example, stolen, in dispute, under objection.
*
*/
OBJT,
@@ -305,7 +305,7 @@ public enum FailingReason3Code {
CYCL,
/**
- * Financial instruments are blocked due to a corporate action event, realignment, etc.
+ * Financial instruments are blocked due to, for example, a corporate action event, realignment.
*
*/
SBLO,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument18.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument18.java
index f193a3ee1..a319dfd26 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument18.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrument18.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class FinancialInstrument18 {
protected SecurityIdentification9 id;
@XmlElement(name = "Nm")
protected String nm;
- @XmlElement(name = "SrsIsseIdDt")
+ @XmlElement(name = "SrsIsseIdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar srsIsseIdDt;
@XmlElement(name = "SrsNm")
@@ -99,7 +102,7 @@ public FinancialInstrument18 setNm(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSrsIsseIdDt() {
@@ -111,7 +114,7 @@ public XMLGregorianCalendar getSrsIsseIdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrument18 setSrsIsseIdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes1.java
index 783e8b978..dbb066bda 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -81,7 +83,8 @@ public class FinancialInstrumentAttributes1 {
@XmlElement(name = "Apprnc")
@XmlSchemaType(name = "string")
protected Appearance1Code apprnc;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar isseDt;
@XmlElement(name = "LglRstrctns")
@@ -105,7 +108,8 @@ public class FinancialInstrumentAttributes1 {
protected String pmryPlcOfListgId;
@XmlElement(name = "PosLmt")
protected FinancialInstrumentQuantityChoice posLmt;
- @XmlElement(name = "ListgDt")
+ @XmlElement(name = "ListgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar listgDt;
@XmlElement(name = "NTPosLmt")
@@ -372,7 +376,7 @@ public FinancialInstrumentAttributes1 setApprnc(Appearance1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -384,7 +388,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes1 setIsseDt(XMLGregorianCalendar value) {
@@ -647,7 +651,7 @@ public FinancialInstrumentAttributes1 setPosLmt(FinancialInstrumentQuantityChoic
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getListgDt() {
@@ -659,7 +663,7 @@ public XMLGregorianCalendar getListgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes1 setListgDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes14.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes14.java
index 6d4150415..3580f5fd8 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes14.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -92,31 +94,40 @@ public class FinancialInstrumentAttributes14 {
protected OptionType3Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -465,7 +476,7 @@ public FinancialInstrumentAttributes14 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -477,7 +488,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setCpnDt(XMLGregorianCalendar value) {
@@ -490,7 +501,7 @@ public FinancialInstrumentAttributes14 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -502,7 +513,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setXpryDt(XMLGregorianCalendar value) {
@@ -515,7 +526,7 @@ public FinancialInstrumentAttributes14 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -527,7 +538,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -540,7 +551,7 @@ public FinancialInstrumentAttributes14 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -552,7 +563,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setMtrtyDt(XMLGregorianCalendar value) {
@@ -565,7 +576,7 @@ public FinancialInstrumentAttributes14 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -577,7 +588,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setIsseDt(XMLGregorianCalendar value) {
@@ -590,7 +601,7 @@ public FinancialInstrumentAttributes14 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -602,7 +613,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -615,7 +626,7 @@ public FinancialInstrumentAttributes14 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -627,7 +638,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setPutblDt(XMLGregorianCalendar value) {
@@ -640,7 +651,7 @@ public FinancialInstrumentAttributes14 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -652,7 +663,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setDtdDt(XMLGregorianCalendar value) {
@@ -665,7 +676,7 @@ public FinancialInstrumentAttributes14 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -677,7 +688,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes14 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes15.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes15.java
index 2119f4b3c..9918ffda1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes15.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -92,31 +94,40 @@ public class FinancialInstrumentAttributes15 {
protected OptionType2Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -465,7 +476,7 @@ public FinancialInstrumentAttributes15 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -477,7 +488,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setCpnDt(XMLGregorianCalendar value) {
@@ -490,7 +501,7 @@ public FinancialInstrumentAttributes15 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -502,7 +513,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setXpryDt(XMLGregorianCalendar value) {
@@ -515,7 +526,7 @@ public FinancialInstrumentAttributes15 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -527,7 +538,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -540,7 +551,7 @@ public FinancialInstrumentAttributes15 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -552,7 +563,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setMtrtyDt(XMLGregorianCalendar value) {
@@ -565,7 +576,7 @@ public FinancialInstrumentAttributes15 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -577,7 +588,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setIsseDt(XMLGregorianCalendar value) {
@@ -590,7 +601,7 @@ public FinancialInstrumentAttributes15 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -602,7 +613,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -615,7 +626,7 @@ public FinancialInstrumentAttributes15 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -627,7 +638,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setPutblDt(XMLGregorianCalendar value) {
@@ -640,7 +651,7 @@ public FinancialInstrumentAttributes15 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -652,7 +663,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setDtdDt(XMLGregorianCalendar value) {
@@ -665,7 +676,7 @@ public FinancialInstrumentAttributes15 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -677,7 +688,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes15 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes20.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes20.java
index 600363c08..994761db9 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes20.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes20.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -92,31 +94,40 @@ public class FinancialInstrumentAttributes20 {
protected OptionType2Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -465,7 +476,7 @@ public FinancialInstrumentAttributes20 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -477,7 +488,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setCpnDt(XMLGregorianCalendar value) {
@@ -490,7 +501,7 @@ public FinancialInstrumentAttributes20 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -502,7 +513,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setXpryDt(XMLGregorianCalendar value) {
@@ -515,7 +526,7 @@ public FinancialInstrumentAttributes20 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -527,7 +538,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -540,7 +551,7 @@ public FinancialInstrumentAttributes20 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -552,7 +563,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setMtrtyDt(XMLGregorianCalendar value) {
@@ -565,7 +576,7 @@ public FinancialInstrumentAttributes20 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -577,7 +588,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setIsseDt(XMLGregorianCalendar value) {
@@ -590,7 +601,7 @@ public FinancialInstrumentAttributes20 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -602,7 +613,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -615,7 +626,7 @@ public FinancialInstrumentAttributes20 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -627,7 +638,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setPutblDt(XMLGregorianCalendar value) {
@@ -640,7 +651,7 @@ public FinancialInstrumentAttributes20 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -652,7 +663,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setDtdDt(XMLGregorianCalendar value) {
@@ -665,7 +676,7 @@ public FinancialInstrumentAttributes20 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -677,7 +688,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes20 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes29.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes29.java
index 653e94429..80e177cb9 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes29.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes29.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -92,31 +94,40 @@ public class FinancialInstrumentAttributes29 {
protected OptionType3Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -465,7 +476,7 @@ public FinancialInstrumentAttributes29 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -477,7 +488,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setCpnDt(XMLGregorianCalendar value) {
@@ -490,7 +501,7 @@ public FinancialInstrumentAttributes29 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -502,7 +513,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setXpryDt(XMLGregorianCalendar value) {
@@ -515,7 +526,7 @@ public FinancialInstrumentAttributes29 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -527,7 +538,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -540,7 +551,7 @@ public FinancialInstrumentAttributes29 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -552,7 +563,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setMtrtyDt(XMLGregorianCalendar value) {
@@ -565,7 +576,7 @@ public FinancialInstrumentAttributes29 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -577,7 +588,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setIsseDt(XMLGregorianCalendar value) {
@@ -590,7 +601,7 @@ public FinancialInstrumentAttributes29 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -602,7 +613,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -615,7 +626,7 @@ public FinancialInstrumentAttributes29 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -627,7 +638,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setPutblDt(XMLGregorianCalendar value) {
@@ -640,7 +651,7 @@ public FinancialInstrumentAttributes29 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -652,7 +663,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setDtdDt(XMLGregorianCalendar value) {
@@ -665,7 +676,7 @@ public FinancialInstrumentAttributes29 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -677,7 +688,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes29 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes35.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes35.java
index 774688060..7f8421dda 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes35.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes35.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes35 {
protected OptionType2Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes35 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes35 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes35 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes35 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes35 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes35 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes35 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes35 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes35 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes35 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes41.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes41.java
index 9f4a40dfb..f736cf144 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes41.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes41.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes41 {
protected OptionType3Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes41 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes41 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes41 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes41 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes41 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes41 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes41 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes41 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes41 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes41 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes64.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes64.java
index f0b91cb06..5709f63d7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes64.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes64.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes64 {
protected OptionType6Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes64 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes64 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes64 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes64 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes64 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes64 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes64 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes64 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes64 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes64 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes78.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes78.java
index ca9b2a9df..55f7f7679 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes78.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes78.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes78 {
protected OptionType7Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes78 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes78 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes78 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes78 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes78 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes78 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes78 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes78 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes78 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes78 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes8.java
index e074dea99..845cafff3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -92,31 +94,40 @@ public class FinancialInstrumentAttributes8 {
protected OptionType2Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -465,7 +476,7 @@ public FinancialInstrumentAttributes8 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -477,7 +488,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setCpnDt(XMLGregorianCalendar value) {
@@ -490,7 +501,7 @@ public FinancialInstrumentAttributes8 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -502,7 +513,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setXpryDt(XMLGregorianCalendar value) {
@@ -515,7 +526,7 @@ public FinancialInstrumentAttributes8 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -527,7 +538,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -540,7 +551,7 @@ public FinancialInstrumentAttributes8 setFltgRateFxgDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -552,7 +563,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setMtrtyDt(XMLGregorianCalendar value) {
@@ -565,7 +576,7 @@ public FinancialInstrumentAttributes8 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -577,7 +588,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setIsseDt(XMLGregorianCalendar value) {
@@ -590,7 +601,7 @@ public FinancialInstrumentAttributes8 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -602,7 +613,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -615,7 +626,7 @@ public FinancialInstrumentAttributes8 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -627,7 +638,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setPutblDt(XMLGregorianCalendar value) {
@@ -640,7 +651,7 @@ public FinancialInstrumentAttributes8 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -652,7 +663,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setDtdDt(XMLGregorianCalendar value) {
@@ -665,7 +676,7 @@ public FinancialInstrumentAttributes8 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -677,7 +688,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes8 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes91.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes91.java
index d0ccf2af7..e3bfddf33 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes91.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes91.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes91 {
protected OptionType6Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes91 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes91 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes91 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes91 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes91 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes91 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes91 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes91 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes91 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes91 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes97.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes97.java
index ffbb3a21a..ba52c7be6 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes97.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentAttributes97.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -87,31 +89,40 @@ public class FinancialInstrumentAttributes97 {
protected OptionType7Choice optnTp;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
- @XmlElement(name = "CpnDt")
+ @XmlElement(name = "CpnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cpnDt;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FltgRateFxgDt")
+ @XmlElement(name = "FltgRateFxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fltgRateFxgDt;
- @XmlElement(name = "MtrtyDt")
+ @XmlElement(name = "MtrtyDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar mtrtyDt;
- @XmlElement(name = "IsseDt")
+ @XmlElement(name = "IsseDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "NxtCllblDt")
+ @XmlElement(name = "NxtCllblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar nxtCllblDt;
- @XmlElement(name = "PutblDt")
+ @XmlElement(name = "PutblDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar putblDt;
- @XmlElement(name = "DtdDt")
+ @XmlElement(name = "DtdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtdDt;
- @XmlElement(name = "FrstPmtDt")
+ @XmlElement(name = "FrstPmtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstPmtDt;
@XmlElement(name = "PrvsFctr")
@@ -412,7 +423,7 @@ public FinancialInstrumentAttributes97 setDnmtnCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCpnDt() {
@@ -424,7 +435,7 @@ public XMLGregorianCalendar getCpnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setCpnDt(XMLGregorianCalendar value) {
@@ -437,7 +448,7 @@ public FinancialInstrumentAttributes97 setCpnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -449,7 +460,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setXpryDt(XMLGregorianCalendar value) {
@@ -462,7 +473,7 @@ public FinancialInstrumentAttributes97 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFltgRateFxgDt() {
@@ -474,7 +485,7 @@ public XMLGregorianCalendar getFltgRateFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setFltgRateFxgDt(XMLGregorianCalendar value) {
@@ -487,7 +498,7 @@ public FinancialInstrumentAttributes97 setFltgRateFxgDt(XMLGregorianCalendar val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMtrtyDt() {
@@ -499,7 +510,7 @@ public XMLGregorianCalendar getMtrtyDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setMtrtyDt(XMLGregorianCalendar value) {
@@ -512,7 +523,7 @@ public FinancialInstrumentAttributes97 setMtrtyDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -524,7 +535,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setIsseDt(XMLGregorianCalendar value) {
@@ -537,7 +548,7 @@ public FinancialInstrumentAttributes97 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNxtCllblDt() {
@@ -549,7 +560,7 @@ public XMLGregorianCalendar getNxtCllblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setNxtCllblDt(XMLGregorianCalendar value) {
@@ -562,7 +573,7 @@ public FinancialInstrumentAttributes97 setNxtCllblDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPutblDt() {
@@ -574,7 +585,7 @@ public XMLGregorianCalendar getPutblDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setPutblDt(XMLGregorianCalendar value) {
@@ -587,7 +598,7 @@ public FinancialInstrumentAttributes97 setPutblDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtdDt() {
@@ -599,7 +610,7 @@ public XMLGregorianCalendar getDtdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setDtdDt(XMLGregorianCalendar value) {
@@ -612,7 +623,7 @@ public FinancialInstrumentAttributes97 setDtdDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstPmtDt() {
@@ -624,7 +635,7 @@ public XMLGregorianCalendar getFrstPmtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentAttributes97 setFrstPmtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations.java
index 2693001f4..dc7eefca7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancialInstrumentStipulations.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -134,7 +136,8 @@ public class FinancialInstrumentStipulations {
protected Boolean whlPoolInd;
@XmlElement(name = "PricSrc")
protected String pricSrc;
- @XmlElement(name = "XprtnDt")
+ @XmlElement(name = "XprtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xprtnDt;
@XmlElement(name = "OverAlltmtAmt")
@@ -936,7 +939,7 @@ public FinancialInstrumentStipulations setPricSrc(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXprtnDt() {
@@ -948,7 +951,7 @@ public XMLGregorianCalendar getXprtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancialInstrumentStipulations setXprtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingDateDetails1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingDateDetails1.java
index 8348408ae..d849c4901 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingDateDetails1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FinancingDateDetails1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,13 +31,16 @@
})
public class FinancingDateDetails1 {
- @XmlElement(name = "BookDt")
+ @XmlElement(name = "BookDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected List bookDt;
- @XmlElement(name = "CdtDt", required = true)
+ @XmlElement(name = "CdtDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar cdtDt;
- @XmlElement(name = "DbtDt")
+ @XmlElement(name = "DbtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dbtDt;
@@ -57,7 +62,7 @@ public class FinancingDateDetails1 {
*
*
* Objects of the following type(s) are allowed in the list
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*
*/
@@ -73,7 +78,7 @@ public List getBookDt() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCdtDt() {
@@ -85,7 +90,7 @@ public XMLGregorianCalendar getCdtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancingDateDetails1 setCdtDt(XMLGregorianCalendar value) {
@@ -98,7 +103,7 @@ public FinancingDateDetails1 setCdtDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDbtDt() {
@@ -110,7 +115,7 @@ public XMLGregorianCalendar getDbtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FinancingDateDetails1 setDbtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedOrRecurrentDate1Choice.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedOrRecurrentDate1Choice.java
index 19678bb35..31f3dd9d1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedOrRecurrentDate1Choice.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixedOrRecurrentDate1Choice.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class FixedOrRecurrentDate1Choice {
- @XmlElement(name = "FxdDt")
+ @XmlElement(name = "FxdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fxdDt;
@XmlElement(name = "RcrntDt")
@@ -37,7 +40,7 @@ public class FixedOrRecurrentDate1Choice {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFxdDt() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getFxdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FixedOrRecurrentDate1Choice setFxdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms33.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms33.java
index 16dbf88b6..1781e5eb7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms33.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms33.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class ForeignExchangeTerms33 {
protected String qtdCcy;
@XmlElement(name = "XchgRate", required = true)
protected BigDecimal xchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@XmlElement(name = "QtgInstn")
@@ -178,7 +181,7 @@ public ForeignExchangeTerms33 setXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -190,7 +193,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeTerms33 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms6.java
index 4bb0c8891..8f2e21151 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms6.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class ForeignExchangeTerms6 {
protected String qtdCcy;
@XmlElement(name = "XchgRate", required = true)
protected BigDecimal xchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@XmlElement(name = "QtgInstn")
@@ -122,7 +125,7 @@ public ForeignExchangeTerms6 setXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -134,7 +137,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeTerms6 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms7.java
index 6fde00ccd..d5c5e0592 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTerms7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class ForeignExchangeTerms7 {
protected String qtdCcy;
@XmlElement(name = "XchgRate", required = true)
protected BigDecimal xchgRate;
- @XmlElement(name = "QtnDt")
+ @XmlElement(name = "QtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar qtnDt;
@XmlElement(name = "QtgInstn")
@@ -178,7 +181,7 @@ public ForeignExchangeTerms7 setXchgRate(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getQtnDt() {
@@ -190,7 +193,7 @@ public XMLGregorianCalendar getQtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeTerms7 setQtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Future1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Future1.java
index f436bca4e..d1c50cf05 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Future1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Future1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +38,12 @@ public class Future1 {
protected BigDecimal ctrctSz;
@XmlElement(name = "ExrcPric")
protected Price1 exrcPric;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xpryDt;
- @XmlElement(name = "FutrDt")
+ @XmlElement(name = "FutrDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar futrDt;
@XmlElement(name = "MinSz")
@@ -105,7 +109,7 @@ public Future1 setExrcPric(Price1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -117,7 +121,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Future1 setXpryDt(XMLGregorianCalendar value) {
@@ -130,7 +134,7 @@ public Future1 setXpryDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFutrDt() {
@@ -142,7 +146,7 @@ public XMLGregorianCalendar getFutrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Future1 setFutrDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment1.java
index 5aabf954c..bab36f682 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Garnishment1 {
protected PartyIdentification43 grnshmtAdmstr;
@XmlElement(name = "RefNb")
protected String refNb;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "RmtdAmt")
@@ -155,7 +158,7 @@ public Garnishment1 setRefNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -167,7 +170,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Garnishment1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment2.java
index 488f79374..2a0108ea7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Garnishment2 {
protected PartyIdentification125 grnshmtAdmstr;
@XmlElement(name = "RefNb")
protected String refNb;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "RmtdAmt")
@@ -155,7 +158,7 @@ public Garnishment2 setRefNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -167,7 +170,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Garnishment2 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment3.java
index 64414fc5d..75d83dc54 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Garnishment3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Garnishment3 {
protected PartyIdentification135 grnshmtAdmstr;
@XmlElement(name = "RefNb")
protected String refNb;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "RmtdAmt")
@@ -155,7 +158,7 @@ public Garnishment3 setRefNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -167,7 +170,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Garnishment3 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader5.java
index f0943b174..e098e4140 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class GroupHeader5 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty")
@@ -80,7 +83,7 @@ public GroupHeader5 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -92,7 +95,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader50.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader50.java
index b6eba17de..255a63f9c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader50.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader50.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader50 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader50 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader50 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader50 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader50 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader50 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader58.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader58.java
index b5d9bf6e5..1d5842fdf 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader58.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader58.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class GroupHeader58 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
@@ -74,7 +77,7 @@ public GroupHeader58 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader58 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader63.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader63.java
index 0a8f45878..2123e72a1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader63.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader63.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class GroupHeader63 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
@@ -75,7 +78,7 @@ public GroupHeader63 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -87,7 +90,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader63 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader7.java
index a98e2307e..d38dc05f5 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader7.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class GroupHeader7 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
@@ -90,7 +93,7 @@ public GroupHeader7 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader7 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader70.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader70.java
index 69e970f8c..8aabf5748 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader70.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader70.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader70 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader70 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader70 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader70 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader70 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader70 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header20.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header20.java
index 213c8c90d..513ba3900 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header20.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header20.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header20 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -132,7 +135,7 @@ public Header20 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header20 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header21.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header21.java
index 2fa345fe0..b49bf39ed 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header21.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header21.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Header21 {
protected String xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected BigDecimal reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -161,7 +164,7 @@ public Header21 setReTrnsmssnCntr(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header21 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header31.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header31.java
index dc310ba7f..431972e09 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header31.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header31.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class Header31 {
protected String prtcolVrsn;
@XmlElement(name = "XchgId", required = true)
protected String xchgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -132,7 +135,7 @@ public Header31 setXchgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -144,7 +147,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header31 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header32.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header32.java
index e46b251e7..a09a9f631 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header32.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header32.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Header32 {
protected String xchgId;
@XmlElement(name = "ReTrnsmssnCntr")
protected BigDecimal reTrnsmssnCntr;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InitgPty", required = true)
@@ -161,7 +164,7 @@ public Header32 setReTrnsmssnCntr(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -173,7 +176,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header32 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment2.java
index cfe8843ec..7b7b57965 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instalment2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class Instalment2 {
@XmlElement(name = "SeqId", required = true)
protected String seqId;
- @XmlElement(name = "PmtDueDt", required = true)
+ @XmlElement(name = "PmtDueDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pmtDueDt;
@XmlElement(name = "Amt", required = true)
@@ -69,7 +72,7 @@ public Instalment2 setSeqId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPmtDueDt() {
@@ -81,7 +84,7 @@ public XMLGregorianCalendar getPmtDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Instalment2 setPmtDueDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3Code.java
index b986fdb20..2a94dc818 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction3Code.java
@@ -40,7 +40,7 @@ public enum Instruction3Code {
HOLD,
/**
- * Please advise/contact (ultimate) creditor/claimant by phone
+ * Please advise/contact (ultimate) creditor/claimant by phone.
*
*/
PHOB,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5Code.java
index 558646dcf..9616f3e0a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Instruction5Code.java
@@ -26,7 +26,7 @@ public enum Instruction5Code {
/**
- * Please advise/contact (ultimate) creditor/claimant by phone
+ * Please advise/contact (ultimate) creditor/claimant by phone.
*
*/
PHOB,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg2.java
index b1ca23471..8f7c04d98 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -57,7 +59,8 @@ public class InstrumentLeg2 {
@XmlElement(name = "LegSwpTp")
@XmlSchemaType(name = "string")
protected LegSwapType1Code legSwpTp;
- @XmlElement(name = "LegSttlmDt")
+ @XmlElement(name = "LegSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar legSttlmDt;
@XmlElement(name = "LegSttlmDtCd")
@@ -236,7 +239,7 @@ public InstrumentLeg2 setLegSwpTp(LegSwapType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLegSttlmDt() {
@@ -248,7 +251,7 @@ public XMLGregorianCalendar getLegSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InstrumentLeg2 setLegSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestChange1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestChange1.java
index a3a832e53..76ee048ba 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestChange1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestChange1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,13 +38,16 @@
})
public class InterestChange1 {
- @XmlElement(name = "FxgDt", required = true)
+ @XmlElement(name = "FxgDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar fxgDt;
- @XmlElement(name = "RptgDt", required = true)
+ @XmlElement(name = "RptgDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rptgDt;
- @XmlElement(name = "RstDt", required = true)
+ @XmlElement(name = "RstDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rstDt;
@XmlElement(name = "SprdRate", required = true)
@@ -69,7 +74,7 @@ public class InterestChange1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFxgDt() {
@@ -81,7 +86,7 @@ public XMLGregorianCalendar getFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestChange1 setFxgDt(XMLGregorianCalendar value) {
@@ -94,7 +99,7 @@ public InterestChange1 setFxgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRptgDt() {
@@ -106,7 +111,7 @@ public XMLGregorianCalendar getRptgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestChange1 setRptgDt(XMLGregorianCalendar value) {
@@ -119,7 +124,7 @@ public InterestChange1 setRptgDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRstDt() {
@@ -131,7 +136,7 @@ public XMLGregorianCalendar getRstDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InterestChange1 setRstDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestComputationMethod2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestComputationMethod2Code.java
index 7f4c41f3a..453dae4a3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestComputationMethod2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InterestComputationMethod2Code.java
@@ -40,21 +40,22 @@ public enum InterestComputationMethod2Code {
/**
- * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February, and provided that the interest period started on a 30th or a 31st. This means that a 31st is assumed to be a 30th if the period started on a 30th or a 31st and the 28 Feb (or 29 Feb for a leap year) is assumed to be the 28th (or 29th). This is the most commonly used 30/360 method for US straight and convertible bonds.
+ * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February, and provided that the interest period started on a 30th or a 31st. This means that a 31st is assumed to be a 30th if the period started on a 30th or a 31st and the 28
+ * Feb (or 29 Feb for a leap year) is assumed to be a 28th (or 29th). It is the most commonly used 30/360 method for US straight and convertible bonds.
*
*/
@XmlEnumValue("A001")
A_001("A001"),
/**
- * Method whereby interest is calculated based on a 30-day month in a way similar to the 30/360 (basic rule) and a 365-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that a 31st is assumed to be the 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be the 28th (or 29th).
+ * Method whereby interest is calculated based on a 30-day month in a way similar to the 30/360 (basic rule) and a 365-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that a 31st is assumed to be a 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be a 28th (or 29th).
*
*/
@XmlEnumValue("A002")
A_002("A002"),
/**
- * Method whereby interest is calculated based on a 30-day month in a way similar to the 30/360 (basic rule) and the assumed number of days in a year in a way similar to the Actual/Actual (ICMA). Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that the 31st is assumed to be the 30th and 28 Feb (or 29 Feb for a leap year) is assumed to be the 28th (or 29th). The assumed number of days in a year is computed as the actual number of days in the coupon period multiplied by the number of interest payments in the year.
+ * Method whereby interest is calculated based on a 30-day month in a way similar to the 30/360 (basic rule) and the assumed number of days in a year in a way similar to the Actual/Actual (ICMA). Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that a 31st is assumed to be a 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be a 28th (or 29th). The assumed number of days in a year is computed as the actual number of days in the coupon period multiplied by the number of interest payments in the year.
*
*/
@XmlEnumValue("A003")
@@ -75,14 +76,15 @@ public enum InterestComputationMethod2Code {
A_005("A005"),
/**
- * Method whereby interest is calculated based on the actual number of accrued days and the assumed number of days in a year, that is, the actual number of days in the coupon period multiplied by the number of interest payments in the year. If the coupon period is irregular (first or last coupon), it is extended or split into quasi-interest periods that have the length of a regular coupon period and the computation is operated separately on each quasi-interest period and the intermediate results are summed up.
+ * Method whereby interest is calculated based on the actual number of accrued days and the assumed number of days in a year, ie, the actual number of days in the coupon period multiplied by the number of interest payments in the year. If the coupon period is irregular (first or last coupon), it is extended or split into quasi interest periods that have the length of a regular coupon period and the computation is operated separately on each quasi interest period and the intermediate results are summed up.
*
*/
@XmlEnumValue("A006")
A_006("A006"),
/**
- * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month. This means that the 31st is assumed to be the 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be equivalent to 30 Feb. However, if the last day of the maturity coupon period is the last day of February, it will not be assumed to be the 30th. It is a variation of the 30/360 (ICMA) method commonly used for eurobonds. The usage of this variation is only relevant when the coupon periods are scheduled to end on the last day of the month.
+ * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month. This means that a 31st is
+ * assumed to be a 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be equivalent to a 30 Feb. However, if the last day of the maturity coupon period is the last day of February, it will not be assumed to be a 30th. It is a variation of the 30/360 (ICMA) method commonly used for eurobonds. The usage of this variation is only relevant when the coupon periods are scheduled to end on the last day of the month.
*
*/
@XmlEnumValue("A007")
@@ -103,28 +105,29 @@ public enum InterestComputationMethod2Code {
A_009("A009"),
/**
- * Method whereby interest is calculated based on the actual number of accrued days and a 366-day year (if 29 Feb falls in the coupon period) or a 365-day year (if 29 Feb does not fall in the coupon period). If a coupon period is longer than one year, it is split by repetitively separating full year subperiods counting backwards from the end of the coupon period (a year backwards from 28 Feb being 29 Feb, if it exists). The first of the subperiods starts on the start date of the accrued interest period and thus is possibly shorter than a year. Then the interest computation is operated separately on each subperiod and the intermediate results are summed up.
+ * Method whereby interest is calculated based on the actual number of accrued days and a 366-day year (if 29 Feb falls in the coupon period) or a 365-day year (if 29 Feb does not fall in the coupon period). If a coupon period is longer than one year, it is split by repetitively separating full year sub-periods counting backwards from the end of the coupon period (a year backwards from a 28 Feb being 29 Feb, if it exists). The first of the sub-periods starts on the start date of the accrued interest period and thus is possibly shorter than a year. Then the interest computation is operated separately on each sub-period and the intermediate results are summed up.
*
*/
@XmlEnumValue("A010")
A_010("A010"),
/**
- * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that the 31st is assumed to be the 30th and 28 Feb (or 29 Feb for a leap year) is assumed to be the 28th (or 29th). It is the most commonly used 30/360 method for non-US straight and convertible bonds issued before 1 January 1999.
+ * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for February. This means that a 31st is assumed to be a 30th and the 28 Feb (or 29 Feb for a leap
+ * year) is assumed to be a 28th (or 29th). It is the most commonly used 30/360 method for non-US straight and convertible bonds issued before 01/01/1999.
*
*/
@XmlEnumValue("A011")
A_011("A011"),
/**
- * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for the last day of February whose day of the month value shall be adapted to the value of the first day of the interest period if the latter is higher and if the period is one of a regular schedule. This means that the 31st is assumed to be the 30th and 28 Feb of a non-leap year is assumed to be equivalent to 29 Feb when the first day of the interest period is the 29th, or to 30 Feb when the first day of the interest period is the 30th or the 31st. The 29th day of February in a leap year is assumed to be equivalent to 30 Feb when the first day of the interest period is the 30th or the 31st. Similarly, if the coupon period starts on the last day of February, it is assumed to produce only one day of interest in February as if it was starting on 30 Feb when the end of the period is the 30th or the 31st, or two days of interest in February when the end of the period is the 29th, or three days of interest in February when it is 28 Feb of a non-leap year and the end of the period is before the 29th.
+ * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month, except for the last day of February whose day of the month value shall be adapted to the value of the first day of the interest period if the latter is higher and if the period is one of a regular schedule. This means that a 31st is assumed to be a 30th and the 28th Feb of a non-leap year is assumed to be equivalent to a 29th Feb when the first day of the interest period is a 29th, or to a 30th Feb when the first day of the interest period is a 30th or a 31st. The 29th Feb of a leap year is assumed to be equivalent to a 30th Feb when the first day of the interest period is a 30th or a 31st. Similarly, if the coupon period starts on the last day of February, it is assumed to produce only one day of interest in February as if it was starting on a 30th Feb when the end of the period is a 30th or a 31st, or two days of interest in February when the end of the period is a 29th, or 3 days of interest in February when it is the 28th Feb of a non-leap year and the end of the period is before the 29th.
*
*/
@XmlEnumValue("A012")
A_012("A012"),
/**
- * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month. This means that the 31st is assumed to be the 30th and 28 Feb (or 29 Feb for a leap year) is assumed to be equivalent to 30 Feb. It is a variation of the 30E/360 (or Eurobond basis) method where the last day of February is always assumed to be the 30th, even if it is the last day of the maturity coupon period.
+ * Method whereby interest is calculated based on a 30-day month and a 360-day year. Accrued interest to a value date on the last day of a month shall be the same as to the 30th calendar day of the same month. This means that a 31st is assumed to be a 30th and the 28 Feb (or 29 Feb for a leap year) is assumed to be equivalent to a 30 Feb. It is a variation of the 30E/360 (or Eurobond basis) method where the last day of February is always assumed to be a 30th, even if it is the last day of the maturity coupon period.
*
*/
@XmlEnumValue("A013")
@@ -138,7 +141,7 @@ public enum InterestComputationMethod2Code {
A_014("A014"),
/**
- * Other method than A001-A020. See Narrative.
+ * Other method than A001-A014. See Narrative.
*
*/
NARR("NARR");
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole2Code.java
index a8aa03826..1e8bb58ee 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvestmentFundRole2Code.java
@@ -52,7 +52,7 @@ public enum InvestmentFundRole2Code {
TRAG("TRAG"),
/**
- * Party that provides services to investors relating to financial products. These services may include some, or all of, provision of information and advice on products, placement of investment orders, transmission of payment, custody of assets, and the administration of rights and benefits. In the specific framework of investment funds industry, an intermediary may present information about funds to potential investors, and solicit orders for the fund. This intermediary may facilitate the transmission of the orders and information from/to the investors and/or other intermediaries. The intermediary receives commission from the Fund and/or fees from the investor.
+ * The party that provides services to investors relating to financial products. These services may include some, or all of, provision of information and advice on products, placement of investment orders, transmission of payment, custody of assets, and the administration of rights and benefits. In the specific framework of investment funds industry, an intermediary may present information about Funds to potential investors, and solicit orders for the Fund. It may facilitate the transmission of the orders and information from/to the investors and/or other intermediaries. The intermediary receives commission from the Fund and/or fees from the investor.
*
*/
INTR("INTR"),
@@ -64,7 +64,7 @@ public enum InvestmentFundRole2Code {
DIST("DIST"),
/**
- * Party that acts as an aggregator of funds, also called a funds hub.
+ * Party that acts as an aggregator of funds, also called funds hub.
*
*/
CONC("CONC"),
@@ -84,7 +84,7 @@ public enum InvestmentFundRole2Code {
UCL_2("UCL2"),
/**
- * Party that transmits the instruction, advice, notification or report.
+ * Party that transmits the order to the order executing party, if it is not identified in the Investment Account Owner element.
*
*/
TRAN("TRAN");
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader1.java
index 4bbefb097..045b0f803 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceHeader1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class InvoiceHeader1 {
protected String tpCd;
@XmlElement(name = "Nm")
protected List nm;
- @XmlElement(name = "IsseDtTm", required = true)
+ @XmlElement(name = "IsseDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar isseDtTm;
@XmlElement(name = "Issr")
@@ -139,7 +142,7 @@ public List getNm() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDtTm() {
@@ -151,7 +154,7 @@ public XMLGregorianCalendar getIsseDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvoiceHeader1 setIsseDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceTotals1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceTotals1.java
index f8b4f62e3..ac390548d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceTotals1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InvoiceTotals1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class InvoiceTotals1 {
protected Adjustment5 adjstmnt;
@XmlElement(name = "TtlInvcAmt", required = true)
protected ActiveCurrencyAndAmount ttlInvcAmt;
- @XmlElement(name = "PmtDueDt", required = true)
+ @XmlElement(name = "PmtDueDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pmtDueDt;
@@ -146,7 +149,7 @@ public InvoiceTotals1 setTtlInvcAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPmtDueDt() {
@@ -158,7 +161,7 @@ public XMLGregorianCalendar getPmtDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InvoiceTotals1 setPmtDueDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem10.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem10.java
index 4dd1ff4e5..049cf7264 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem10.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItem10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -104,17 +106,20 @@ public class LineItem10 {
protected Quantity3 measrQtyStart;
@XmlElement(name = "MeasrQtyEnd")
protected Quantity3 measrQtyEnd;
- @XmlElement(name = "MeasrDtTmStart")
+ @XmlElement(name = "MeasrDtTmStart", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmStart;
- @XmlElement(name = "MeasrDtTmEnd")
+ @XmlElement(name = "MeasrDtTmEnd", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar measrDtTmEnd;
@XmlElement(name = "ShipTo")
protected TradeParty1 shipTo;
@XmlElement(name = "Incotrms")
protected Incoterms3 incotrms;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "DlvryNoteId")
@@ -740,7 +745,7 @@ public LineItem10 setMeasrQtyEnd(Quantity3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmStart() {
@@ -752,7 +757,7 @@ public XMLGregorianCalendar getMeasrDtTmStart() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem10 setMeasrDtTmStart(XMLGregorianCalendar value) {
@@ -765,7 +770,7 @@ public LineItem10 setMeasrDtTmStart(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getMeasrDtTmEnd() {
@@ -777,7 +782,7 @@ public XMLGregorianCalendar getMeasrDtTmEnd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem10 setMeasrDtTmEnd(XMLGregorianCalendar value) {
@@ -840,7 +845,7 @@ public LineItem10 setIncotrms(Incoterms3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -852,7 +857,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItem10 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemTax1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemTax1.java
index e09301515..340798ee3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemTax1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LineItemTax1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class LineItemTax1 {
protected List clctdAmt;
@XmlElement(name = "TpCd")
protected TaxTypeFormat1Choice tpCd;
- @XmlElement(name = "TaxPtDt")
+ @XmlElement(name = "TaxPtDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar taxPtDt;
@XmlElement(name = "ClctdRate")
@@ -106,7 +109,7 @@ public LineItemTax1 setTpCd(TaxTypeFormat1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTaxPtDt() {
@@ -118,7 +121,7 @@ public XMLGregorianCalendar getTaxPtDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LineItemTax1 setTaxPtDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification1.java
index 10a328c8d..13902b464 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/LongPaymentIdentification1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -15,7 +17,7 @@
/**
- * Identifies a payment instruction by a set of characteristics (as per EBA system requirements) which provides an unambiguous identification of the instruction.
+ * Identifies a payment instruction by a set of characteristics (as per EBA system requirements) which provides an unambiguous identification of the instruction.
*
*
*
@@ -37,7 +39,8 @@ public class LongPaymentIdentification1 {
protected String txId;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected BigDecimal intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "PmtMtd")
@@ -106,7 +109,7 @@ public LongPaymentIdentification1 setIntrBkSttlmAmt(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -118,7 +121,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public LongPaymentIdentification1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation1.java
index f5b3ac321..d0cc06469 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class MandateRelatedInformation1 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -43,10 +46,12 @@ public class MandateRelatedInformation1 {
protected AmendmentInformationDetails1 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -83,7 +88,7 @@ public MandateRelatedInformation1 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation1 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -183,7 +188,7 @@ public MandateRelatedInformation1 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -195,7 +200,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation1 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -208,7 +213,7 @@ public MandateRelatedInformation1 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation1 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation10.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation10.java
index 63dbfdf86..ec1b14c59 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation10.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class MandateRelatedInformation10 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -44,10 +47,12 @@ public class MandateRelatedInformation10 {
protected AmendmentInformationDetails10 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -85,7 +90,7 @@ public MandateRelatedInformation10 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -97,7 +102,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation10 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -185,7 +190,7 @@ public MandateRelatedInformation10 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -197,7 +202,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation10 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -210,7 +215,7 @@ public MandateRelatedInformation10 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -222,7 +227,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation10 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation11.java
index 167122ca3..df20ec95b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class MandateRelatedInformation11 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -45,10 +48,12 @@ public class MandateRelatedInformation11 {
protected AmendmentInformationDetails11 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -88,7 +93,7 @@ public MandateRelatedInformation11 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -100,7 +105,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation11 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -188,7 +193,7 @@ public MandateRelatedInformation11 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -200,7 +205,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation11 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -213,7 +218,7 @@ public MandateRelatedInformation11 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -225,7 +230,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation11 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation12.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation12.java
index 52f63a0fc..5bdd5a75a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation12.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class MandateRelatedInformation12 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -45,10 +48,12 @@ public class MandateRelatedInformation12 {
protected AmendmentInformationDetails12 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -88,7 +93,7 @@ public MandateRelatedInformation12 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -100,7 +105,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation12 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -188,7 +193,7 @@ public MandateRelatedInformation12 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -200,7 +205,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation12 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -213,7 +218,7 @@ public MandateRelatedInformation12 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -225,7 +230,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation12 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation14.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation14.java
index 8d6beafdf..5441aad6b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation14.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation14.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class MandateRelatedInformation14 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -45,10 +48,12 @@ public class MandateRelatedInformation14 {
protected AmendmentInformationDetails13 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -88,7 +93,7 @@ public MandateRelatedInformation14 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -100,7 +105,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation14 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -188,7 +193,7 @@ public MandateRelatedInformation14 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -200,7 +205,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation14 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -213,7 +218,7 @@ public MandateRelatedInformation14 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -225,7 +230,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation14 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation15.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation15.java
index 4ac4bca48..c047b4ca6 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation15.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation15.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@ public class MandateRelatedInformation15 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -45,10 +48,12 @@ public class MandateRelatedInformation15 {
protected AmendmentInformationDetails14 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -88,7 +93,7 @@ public MandateRelatedInformation15 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -100,7 +105,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation15 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -188,7 +193,7 @@ public MandateRelatedInformation15 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -200,7 +205,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation15 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -213,7 +218,7 @@ public MandateRelatedInformation15 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -225,7 +230,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation15 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation6.java
index 546603b28..649885d93 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class MandateRelatedInformation6 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -43,10 +46,12 @@ public class MandateRelatedInformation6 {
protected AmendmentInformationDetails6 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -83,7 +88,7 @@ public MandateRelatedInformation6 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation6 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -183,7 +188,7 @@ public MandateRelatedInformation6 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -195,7 +200,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation6 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -208,7 +213,7 @@ public MandateRelatedInformation6 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation6 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation8.java
index b3d890b0f..d7016eef3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class MandateRelatedInformation8 {
@XmlElement(name = "MndtId")
protected String mndtId;
- @XmlElement(name = "DtOfSgntr")
+ @XmlElement(name = "DtOfSgntr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -43,10 +46,12 @@ public class MandateRelatedInformation8 {
protected AmendmentInformationDetails8 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -83,7 +88,7 @@ public MandateRelatedInformation8 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation8 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -183,7 +188,7 @@ public MandateRelatedInformation8 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -195,7 +200,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation8 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -208,7 +213,7 @@ public MandateRelatedInformation8 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation8 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader1.java
index 56a83c738..41ac44b50 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class MessageHeader1 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -62,7 +65,7 @@ public MessageHeader1 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader11.java
index cb289f061..0a7cedb91 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class MessageHeader11 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -68,7 +71,7 @@ public MessageHeader11 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader11 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader2.java
index eec23c9e8..ca8ac3a4a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MessageHeader2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -65,7 +68,7 @@ public MessageHeader2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader2 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader3.java
index 5f422e88a..3a4466730 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class MessageHeader3 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -71,7 +74,7 @@ public MessageHeader3 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader3 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader5.java
index 01fc6f880..d59a4b69a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class MessageHeader5 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgPgntn")
@@ -74,7 +77,7 @@ public MessageHeader5 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -86,7 +89,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader5 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader7.java
index ad9ed3d22..65fc2bdd0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class MessageHeader7 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -71,7 +74,7 @@ public MessageHeader7 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader7 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader9.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader9.java
index c51c12a16..dfd28612d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader9.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageHeader9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class MessageHeader9 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "ReqTp")
@@ -65,7 +68,7 @@ public MessageHeader9 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageHeader9 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification1.java
index dd5dd304d..c0a27146b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MessageIdentification1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class MessageIdentification1 {
@XmlElement(name = "Id", required = true)
protected String id;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -62,7 +65,7 @@ public MessageIdentification1 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -74,7 +77,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MessageIdentification1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions2.java
index 4f84e0cef..5e4922100 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/NonDeliverableForwardValuationConditions2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class NonDeliverableForwardValuationConditions2 {
@XmlElement(name = "SttlmCcy", required = true)
protected String sttlmCcy;
- @XmlElement(name = "ValtnDt", required = true)
+ @XmlElement(name = "ValtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valtnDt;
@XmlElement(name = "AddtlValtnInf")
@@ -68,7 +71,7 @@ public NonDeliverableForwardValuationConditions2 setSttlmCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDt() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getValtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public NonDeliverableForwardValuationConditions2 setValtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData2.java
index ee4c9fbe2..dfa748765 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningData2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class OpeningData2 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -55,7 +58,7 @@ public class OpeningData2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -67,7 +70,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OpeningData2 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option1.java
index 459dfa704..f9fe62ebb 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,12 +45,14 @@
})
public class Option1 {
- @XmlElement(name = "ConvsDt")
+ @XmlElement(name = "ConvsDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar convsDt;
@XmlElement(name = "StrkPric")
protected Price1 strkPric;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "MinExrcblMltplQty")
@@ -90,7 +94,7 @@ public class Option1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getConvsDt() {
@@ -102,7 +106,7 @@ public XMLGregorianCalendar getConvsDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Option1 setConvsDt(XMLGregorianCalendar value) {
@@ -140,7 +144,7 @@ public Option1 setStrkPric(Price1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -152,7 +156,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Option1 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option6.java
index 0869935b5..b615b4783 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option6.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,10 +43,12 @@ public class Option6 {
@XmlElement(name = "ExrcStyle", required = true)
@XmlSchemaType(name = "string")
protected OptionStyle2Code exrcStyle;
- @XmlElement(name = "EarlstExrcDt")
+ @XmlElement(name = "EarlstExrcDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlstExrcDt;
- @XmlElement(name = "XpryDtAndTm", required = true)
+ @XmlElement(name = "XpryDtAndTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xpryDtAndTm;
@XmlElement(name = "XpryLctn", required = true)
@@ -136,7 +141,7 @@ public Option6 setExrcStyle(OptionStyle2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlstExrcDt() {
@@ -148,7 +153,7 @@ public XMLGregorianCalendar getEarlstExrcDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Option6 setEarlstExrcDt(XMLGregorianCalendar value) {
@@ -161,7 +166,7 @@ public Option6 setEarlstExrcDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDtAndTm() {
@@ -173,7 +178,7 @@ public XMLGregorianCalendar getXpryDtAndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Option6 setXpryDtAndTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData4.java
index 4859d5094..9b430788b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OptionData4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class OptionData4 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -49,7 +52,7 @@ public class OptionData4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -61,7 +64,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OptionData4 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java
index 2abf899ca..c96f8cd0b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessInstruction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OriginalBusinessInstruction1 {
protected String msgId;
@XmlElement(name = "MsgNmId")
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -90,7 +93,7 @@ public OriginalBusinessInstruction1 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalBusinessInstruction1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessQuery1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessQuery1.java
index 04c19fbed..b6bdc1770 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessQuery1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessQuery1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OriginalBusinessQuery1 {
protected String msgId;
@XmlElement(name = "MsgNmId")
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -90,7 +93,7 @@ public OriginalBusinessQuery1 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalBusinessQuery1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessReport1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessReport1.java
index c25d31af1..2e067703b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessReport1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalBusinessReport1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OriginalBusinessReport1 {
protected String msgId;
@XmlElement(name = "MsgNmId")
protected String msgNmId;
- @XmlElement(name = "CreDtTm")
+ @XmlElement(name = "CreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -90,7 +93,7 @@ public OriginalBusinessReport1 setMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalBusinessReport1 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader1.java
index d30591c25..577999857 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class OriginalGroupHeader1 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -109,7 +112,7 @@ public OriginalGroupHeader1 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -121,7 +124,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader1 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader11.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader11.java
index 12bb5e628..9e6590b97 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader11.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader11 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader11 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader11 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader13.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader13.java
index 55558b517..506b7af1b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader13.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader13.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class OriginalGroupHeader13 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -108,7 +111,7 @@ public OriginalGroupHeader13 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -120,7 +123,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader13 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader16.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader16.java
index d9ebd8699..0bcc9f322 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader16.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader16.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader16 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader16 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader16 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader17.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader17.java
index befe71d95..e014f61ec 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader17.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class OriginalGroupHeader17 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -108,7 +111,7 @@ public OriginalGroupHeader17 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -120,7 +123,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader17 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader3.java
index 8f0b79905..87f2d982d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader3 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader3 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader3 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader7.java
index cff58b7f6..628e6674a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader7.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class OriginalGroupHeader7 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -108,7 +111,7 @@ public OriginalGroupHeader7 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -120,7 +123,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader7 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation1.java
index 2aa048964..1f6da8c17 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class OriginalGroupInformation1 {
protected String ntwkFileNm;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "FileOrgtr")
@@ -140,7 +143,7 @@ public OriginalGroupInformation1 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -152,7 +155,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation1 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation20.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation20.java
index 658d8a6b2..cdf8995bc 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation20.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation20.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,7 +41,8 @@ public class OriginalGroupInformation20 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -109,7 +112,7 @@ public OriginalGroupInformation20 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -121,7 +124,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation20 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation22.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation22.java
index b99911032..3111312f8 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation22.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation22.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation22 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation22 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation22 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation29.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation29.java
index 00836fc1f..f02a82026 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation29.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation29.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OriginalGroupInformation29 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@@ -90,7 +93,7 @@ public OriginalGroupInformation29 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation29 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation3.java
index b026ef5c2..d109161c3 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OriginalGroupInformation3 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@@ -90,7 +93,7 @@ public OriginalGroupInformation3 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation3 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation4.java
index 92cab6c98..8aa248934 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation4 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "CxlRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation4 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation4 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation5.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation5.java
index 3c947e18c..86a8200e8 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation5.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation5.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation5 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation5 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation5 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalInvoiceInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalInvoiceInformation1.java
index aa062d683..05e7cd818 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalInvoiceInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalInvoiceInformation1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class OriginalInvoiceInformation1 {
protected String docNb;
@XmlElement(name = "TtlInvcAmt", required = true)
protected ActiveCurrencyAndAmount ttlInvcAmt;
- @XmlElement(name = "IsseDt", required = true)
+ @XmlElement(name = "IsseDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
- @XmlElement(name = "PmtDueDt", required = true)
+ @XmlElement(name = "PmtDueDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pmtDueDt;
@@ -94,7 +98,7 @@ public OriginalInvoiceInformation1 setTtlInvcAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIsseDt() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getIsseDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalInvoiceInformation1 setIsseDt(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public OriginalInvoiceInformation1 setIsseDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPmtDueDt() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getPmtDueDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalInvoiceInformation1 setPmtDueDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference1.java
index 1c0edad5b..2bf262150 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference1 {
protected CurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType2Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference1 setAmt(AmountType2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference1 setIntrBkSttlmDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference1 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference1 setReqdExctnDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference1 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference13.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference13.java
index c40dd558b..2dd8dd541 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference13.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference13.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference13 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType3Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference13 setAmt(AmountType3Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference13 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference13 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference13 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference13 setReqdColltnDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference13 setReqdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference16.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference16.java
index 365422648..c69461b2d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference16.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference16.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference16 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType3Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference16 setAmt(AmountType3Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference16 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference16 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference16 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference16 setReqdColltnDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference16 setReqdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference20.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference20.java
index a419070f7..7d0696c8b 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference20.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference20.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference20 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference20 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference20 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference20 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference20 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference20 setReqdColltnDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference20 setReqdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference22.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference22.java
index d5255d3a0..cdac353a6 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference22.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference22.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference22 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference22 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference22 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference22 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference22 setReqdColltnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference22 setReqdColltnDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference22 setReqdExctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference24.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference24.java
index 1ec6b5612..be1a5cc75 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference24.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference24.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,10 +51,12 @@ public class OriginalTransactionReference24 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -146,7 +150,7 @@ public OriginalTransactionReference24 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -158,7 +162,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference24 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -171,7 +175,7 @@ public OriginalTransactionReference24 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -183,7 +187,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference24 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference27.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference27.java
index 26df6476c..4355ef30c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference27.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference27.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OriginalTransactionReference27 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -149,7 +153,7 @@ public OriginalTransactionReference27 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference27 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -174,7 +178,7 @@ public OriginalTransactionReference27 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -186,7 +190,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference27 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference28.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference28.java
index 3d7de37cd..fcbf5e8b2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference28.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference28.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OriginalTransactionReference28 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -149,7 +153,7 @@ public OriginalTransactionReference28 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference28 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -174,7 +178,7 @@ public OriginalTransactionReference28 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -186,7 +190,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference28 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference31.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference31.java
index 957cac328..742b45a17 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference31.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference31.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OriginalTransactionReference31 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -149,7 +153,7 @@ public OriginalTransactionReference31 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference31 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -174,7 +178,7 @@ public OriginalTransactionReference31 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -186,7 +190,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference31 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference35.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference35.java
index 2087ad5fd..3099ea811 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference35.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference35.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,10 +52,12 @@ public class OriginalTransactionReference35 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -149,7 +153,7 @@ public OriginalTransactionReference35 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -161,7 +165,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference35 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -174,7 +178,7 @@ public OriginalTransactionReference35 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -186,7 +190,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference35 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/POIComponentType4Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/POIComponentType4Code.java
index 2fd1f95e3..80a4c9de1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/POIComponentType4Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/POIComponentType4Code.java
@@ -95,7 +95,7 @@ public enum POIComponentType4Code {
APLI,
/**
- * EMV application kernel (EMV is the chip card specifications initially defined by Eurocard, Mastercard and Visa).
+ * EMV application kernel (EMV is the chip card specifications initially defined by Eurocard, Mastercard and Visa).
*
*/
EMVK,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation1.java
index c9ffaa1bf..6961203f7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation1.java
@@ -12,7 +12,7 @@
/**
- * Provides additional information regarding the party, for example, the contact unit or person responsible for the transaction identified in the message.
+ * Provides additional information regarding the party, eg, the contact unit or person responsible for the transaction identified in the message.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation3.java
index 522cd9351..4c059022c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyTextInformation3.java
@@ -12,7 +12,7 @@
/**
- * Provides additional information regarding the party, eg, the contact unit or person responsible for the transaction identified in the message.
+ * Provides additional information regarding the party, for example, the contact unit or person responsible for the transaction identified in the message.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType3Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType3Code.java
index 4960b67ef..44072628f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType3Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PartyType3Code.java
@@ -55,7 +55,7 @@ public enum PartyType3Code {
ITAG,
/**
- * Bank of the Merchant providing goods and services
+ * Entity acquiring card transactions.
*
*/
ACQR,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction14.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction14.java
index ae85eeaa3..28c4281e7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction14.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstruction14.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class PaymentInstruction14 {
protected Boolean gnrtdOrdr;
@XmlElement(name = "TxId")
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "EndToEndId")
@@ -410,7 +413,7 @@ public PaymentInstruction14 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -422,7 +425,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentInstruction14 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument1Code.java
index cd126a21f..19a45ea5c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentInstrument1Code.java
@@ -70,13 +70,13 @@ public enum PaymentInstrument1Code {
BKT,
/**
- * Payment instrument is a debit card. (The payment originated using a debit card scheme.).
+ * Payment instrument is a debit card. (The payment originated using a debit card scheme.)
*
*/
DCP,
/**
- * Payment instrument is a credit card. (The payment originated using a credit card scheme.).
+ * Payment instrument is a credit card. (The payment originated using a credit card scheme.)
*
*/
CCP,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation1.java
index 70bb51db2..34f5407f1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransactionInformation1 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "InstgAgt")
@@ -278,7 +281,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation1 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentType3Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentType3Code.java
index 291dee852..aed4bd148 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentType3Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentType3Code.java
@@ -180,7 +180,7 @@ public enum PaymentType3Code {
TCP,
/**
- * Transaction is linked to an overnight deposit.
+ * Transaction is linked to an overnight deposit
*
*/
OND,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingFailingSettlement1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingFailingSettlement1Code.java
index 115310983..d40191bf2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingFailingSettlement1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingFailingSettlement1Code.java
@@ -327,7 +327,7 @@ public enum PendingFailingSettlement1Code {
GLOB,
/**
- * Counterparty is in receivership, ie, a form of bankruptcy.
+ * Counterparty is in receivership, ie, a form of bankruptcy.
*
*/
CPEC,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java
index 1e9d198a3..1bd848452 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason10Code.java
@@ -291,7 +291,7 @@ public enum PendingReason10Code {
CYCL,
/**
- * Financial instruments are blocked due to a corporate action event, realignment, etc.
+ * Financial instruments are blocked due to, for example, a corporate action event, realignment.
*
*/
SBLO,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason1Code.java
index 28d59a30a..6517ff61c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason1Code.java
@@ -290,7 +290,7 @@ public enum PendingReason1Code {
CYCL,
/**
- * Financial instruments are blocked due to, for example, a corporate action event, realignment.
+ * Financial instruments are blocked due to a corporate action event, realignment, etc.
*
*/
SBLO,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason2Code.java
index 9b4974c5e..4f1d42121 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PendingReason2Code.java
@@ -294,7 +294,7 @@ public enum PendingReason2Code {
CYCL,
/**
- * Financial instruments are blocked due to, for example, a corporate action event, realignment.
+ * Financial instruments are blocked due to a corporate action event, realignment, etc.
*
*/
SBLO,
@@ -420,7 +420,7 @@ public enum PendingReason2Code {
PRSY,
/**
- * Central securities depository sets the instruction in a hold/frozen/preadvice mode.
+ * Central securities depository sets the instruction in a hold/frozen/preadvice mode.
*
*/
CSDH,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2.java
index d0dc3185a..00f0f789a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Period2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class Period2 {
- @XmlElement(name = "FrDt", required = true)
+ @XmlElement(name = "FrDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frDt;
- @XmlElement(name = "ToDt", required = true)
+ @XmlElement(name = "ToDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar toDt;
@@ -38,7 +42,7 @@ public class Period2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Period2 setFrDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public Period2 setFrDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Period2 setToDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentAssessment1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentAssessment1.java
index 8e1d6639f..ff980bd34 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentAssessment1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentAssessment1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,10 +38,12 @@ public class PointOfInteractionComponentAssessment1 {
protected POIComponentAssessment1Code tp;
@XmlElement(name = "Assgnr", required = true)
protected List assgnr;
- @XmlElement(name = "DlvryDt")
+ @XmlElement(name = "DlvryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDt;
- @XmlElement(name = "XprtnDt")
+ @XmlElement(name = "XprtnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xprtnDt;
@XmlElement(name = "Nb", required = true)
@@ -104,7 +108,7 @@ public List getAssgnr() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDt() {
@@ -116,7 +120,7 @@ public XMLGregorianCalendar getDlvryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PointOfInteractionComponentAssessment1 setDlvryDt(XMLGregorianCalendar value) {
@@ -129,7 +133,7 @@ public PointOfInteractionComponentAssessment1 setDlvryDt(XMLGregorianCalendar va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXprtnDt() {
@@ -141,7 +145,7 @@ public XMLGregorianCalendar getXprtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PointOfInteractionComponentAssessment1 setXprtnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentStatus3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentStatus3.java
index 99e5c64fe..ced2b5934 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentStatus3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PointOfInteractionComponentStatus3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class PointOfInteractionComponentStatus3 {
@XmlElement(name = "Sts")
@XmlSchemaType(name = "string")
protected POIComponentStatus1Code sts;
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpryDt;
@@ -91,7 +94,7 @@ public PointOfInteractionComponentStatus3 setSts(POIComponentStatus1Code value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -103,7 +106,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PointOfInteractionComponentStatus3 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount2.java
index 00f49d6e2..d258044bd 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@ public class PremiumAmount2 {
protected PremiumQuote1Choice prmQt;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SttlmPty")
@@ -93,7 +96,7 @@ public PremiumAmount2 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -105,7 +108,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PremiumAmount2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Priority3Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Priority3Code.java
index bb9478bf4..c2bf0f319 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Priority3Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Priority3Code.java
@@ -27,7 +27,7 @@ public enum Priority3Code {
/**
- * Priority level is urgent (highest priority possible)
+ * Priority level is urgent (highest priority possible).
*
*/
URGT,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QualifiedDocumentInformation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QualifiedDocumentInformation1.java
index 3f59a5aa2..fa74290a2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QualifiedDocumentInformation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/QualifiedDocumentInformation1.java
@@ -13,6 +13,7 @@
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,7 +63,8 @@ public class QualifiedDocumentInformation1 {
protected String itmListIdr;
@XmlElement(name = "ItmIdr")
protected String itmIdr;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Vrsn")
@@ -183,7 +185,7 @@ public QualifiedDocumentInformation1 setItmIdr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -195,7 +197,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public QualifiedDocumentInformation1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Rating1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Rating1.java
index 63d999f84..8cd80e830 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Rating1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Rating1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class Rating1 {
@XmlElement(name = "RatgSchme", required = true)
protected String ratgSchme;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "ValId", required = true)
@@ -65,7 +68,7 @@ public Rating1 setRatgSchme(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Rating1 setValDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation3.java
index 0d6f90b98..55fe1cffa 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class ReferredDocumentInformation3 {
protected ReferredDocumentType2 tp;
@XmlElement(name = "Nb")
protected String nb;
- @XmlElement(name = "RltdDt")
+ @XmlElement(name = "RltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rltdDt;
@@ -90,7 +93,7 @@ public ReferredDocumentInformation3 setNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRltdDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReferredDocumentInformation3 setRltdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation6.java
index 580dc4da3..aeedf0546 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class ReferredDocumentInformation6 {
protected ReferredDocumentType4 tp;
@XmlElement(name = "Nb")
protected String nb;
- @XmlElement(name = "RltdDt")
+ @XmlElement(name = "RltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rltdDt;
@@ -90,7 +93,7 @@ public ReferredDocumentInformation6 setNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRltdDt() {
@@ -102,7 +105,7 @@ public XMLGregorianCalendar getRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReferredDocumentInformation6 setRltdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation7.java
index 727a8e92d..10a4751b1 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReferredDocumentInformation7.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class ReferredDocumentInformation7 {
protected ReferredDocumentType4 tp;
@XmlElement(name = "Nb")
protected String nb;
- @XmlElement(name = "RltdDt")
+ @XmlElement(name = "RltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rltdDt;
@XmlElement(name = "LineDtls")
@@ -95,7 +98,7 @@ public ReferredDocumentInformation7 setNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRltdDt() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReferredDocumentInformation7 setRltdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Registration2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Registration2Code.java
index 793f3141f..3a69ef28f 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Registration2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Registration2Code.java
@@ -28,13 +28,13 @@ public enum Registration2Code {
/**
- * You or your party set the instruction in a hold/frozen/preadvice mode.
+ * You or your party set the instruction in a hold/frozen/preadvice mode.
*
*/
PTYH,
/**
- * Central securities depository sets the instruction in a hold/frozen/preadvice mode.
+ * Central securities depository sets the instruction in a hold/frozen/preadvice mode.
*
*/
CSDH,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters2.java
index e698acc15..541f9a8c2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ReportParameters2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +40,8 @@ public class ReportParameters2 {
protected EventFrequency6Code frqcy;
@XmlElement(name = "RptCcy", required = true)
protected String rptCcy;
- @XmlElement(name = "ClctnDt")
+ @XmlElement(name = "ClctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clctnDt;
@@ -147,7 +150,7 @@ public ReportParameters2 setRptCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -159,7 +162,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ReportParameters2 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestType1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestType1Code.java
index e2b01ebca..a3ac933d5 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestType1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RequestType1Code.java
@@ -51,7 +51,7 @@ public enum RequestType1Code {
RT_03("RT03"),
/**
- * Type is a request to change the sequence of the transactions.
+ * Type is a request to change the sequence of the transactions.
*
*/
@XmlEnumValue("RT04")
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Restriction1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Restriction1.java
index de6247853..da7810482 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Restriction1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Restriction1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,10 +31,12 @@ public class Restriction1 {
@XmlElement(name = "RstrctnTp", required = true)
protected CodeOrProprietary1Choice rstrctnTp;
- @XmlElement(name = "VldFr", required = true)
+ @XmlElement(name = "VldFr", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldFr;
- @XmlElement(name = "VldUntil")
+ @XmlElement(name = "VldUntil", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar vldUntil;
@@ -66,7 +70,7 @@ public Restriction1 setRstrctnTp(CodeOrProprietary1Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldFr() {
@@ -78,7 +82,7 @@ public XMLGregorianCalendar getVldFr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Restriction1 setVldFr(XMLGregorianCalendar value) {
@@ -91,7 +95,7 @@ public Restriction1 setVldFr(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getVldUntil() {
@@ -103,7 +107,7 @@ public XMLGregorianCalendar getVldUntil() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Restriction1 setVldUntil(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RiskLevel1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RiskLevel1Code.java
index b477f6f3b..e9ee4d79c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RiskLevel1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RiskLevel1Code.java
@@ -39,7 +39,7 @@ public enum RiskLevel1Code {
LOWW,
/**
- * Medium.
+ * Medium.
*
*/
MEDM;
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing1.java
index 1bd16cff1..ad5941d57 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesFinancing1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class SecuritiesFinancing1 {
protected String ttlNbOfCollInstrs;
@XmlElement(name = "ScndLegNrrtv")
protected String scndLegNrrtv;
- @XmlElement(name = "RateChngDtTm", required = true)
+ @XmlElement(name = "RateChngDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar rateChngDtTm;
@XmlElement(name = "TermntnDtTm")
@@ -329,7 +332,7 @@ public SecuritiesFinancing1 setScndLegNrrtv(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRateChngDtTm() {
@@ -341,7 +344,7 @@ public XMLGregorianCalendar getRateChngDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesFinancing1 setRateChngDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement1.java
index aa3350b63..82aab4e77 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SecuritiesSettlement1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class SecuritiesSettlement1 {
@XmlElement(name = "Ccy")
protected String ccy;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "DtCd")
@@ -71,7 +74,7 @@ public SecuritiesSettlement1 setCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SecuritiesSettlement1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData2.java
index dbf2a7442..e66cffc1d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementData2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class SettlementData2 {
protected PartyIdentification8Choice pngPty;
@XmlElement(name = "RcvgPty", required = true)
protected PartyIdentification8Choice rcvgPty;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "SttlmSts")
@@ -246,7 +249,7 @@ public SettlementData2 setRcvgPty(PartyIdentification8Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -258,7 +261,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementData2 setSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDateTimeIndication1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDateTimeIndication1.java
index 4fbaaa418..e1abbf95d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDateTimeIndication1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementDateTimeIndication1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class SettlementDateTimeIndication1 {
- @XmlElement(name = "DbtDtTm")
+ @XmlElement(name = "DbtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dbtDtTm;
- @XmlElement(name = "CdtDtTm")
+ @XmlElement(name = "CdtDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar cdtDtTm;
@@ -38,7 +42,7 @@ public class SettlementDateTimeIndication1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDbtDtTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getDbtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementDateTimeIndication1 setDbtDtTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public SettlementDateTimeIndication1 setDbtDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCdtDtTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getCdtDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementDateTimeIndication1 setCdtDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest2.java
index cb79a263d..76658c5a0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTimeRequest2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,16 +30,20 @@
})
public class SettlementTimeRequest2 {
- @XmlElement(name = "CLSTm")
+ @XmlElement(name = "CLSTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar clsTm;
- @XmlElement(name = "TillTm")
+ @XmlElement(name = "TillTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar tillTm;
- @XmlElement(name = "FrTm")
+ @XmlElement(name = "FrTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar frTm;
- @XmlElement(name = "RjctTm")
+ @XmlElement(name = "RjctTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar rjctTm;
@@ -46,7 +52,7 @@ public class SettlementTimeRequest2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCLSTm() {
@@ -58,7 +64,7 @@ public XMLGregorianCalendar getCLSTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementTimeRequest2 setCLSTm(XMLGregorianCalendar value) {
@@ -71,7 +77,7 @@ public SettlementTimeRequest2 setCLSTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTillTm() {
@@ -83,7 +89,7 @@ public XMLGregorianCalendar getTillTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementTimeRequest2 setTillTm(XMLGregorianCalendar value) {
@@ -96,7 +102,7 @@ public SettlementTimeRequest2 setTillTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrTm() {
@@ -108,7 +114,7 @@ public XMLGregorianCalendar getFrTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementTimeRequest2 setFrTm(XMLGregorianCalendar value) {
@@ -121,7 +127,7 @@ public SettlementTimeRequest2 setFrTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRjctTm() {
@@ -133,7 +139,7 @@ public XMLGregorianCalendar getRjctTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SettlementTimeRequest2 setRjctTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTransactionCondition6Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTransactionCondition6Code.java
index 7ef4eeb88..e8baac8f7 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTransactionCondition6Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SettlementTransactionCondition6Code.java
@@ -136,7 +136,7 @@ public enum SettlementTransactionCondition6Code {
EXPI,
/**
- * The position to cover the pending sale will be available by contractual settlement date (accounting information).
+ * Position to cover the pending sale will be available by contractual settlement date (accounting information).
*
*/
PENS,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange1.java
index 397fd95ec..5de0fc1cc 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class ShipmentDateRange1 {
- @XmlElement(name = "EarlstShipmntDt")
+ @XmlElement(name = "EarlstShipmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlstShipmntDt;
- @XmlElement(name = "LatstShipmntDt")
+ @XmlElement(name = "LatstShipmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar latstShipmntDt;
@@ -38,7 +42,7 @@ public class ShipmentDateRange1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlstShipmntDt() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getEarlstShipmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShipmentDateRange1 setEarlstShipmntDt(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public ShipmentDateRange1 setEarlstShipmntDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLatstShipmntDt() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getLatstShipmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShipmentDateRange1 setLatstShipmntDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange2.java
index 295fc8086..95dcd5458 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShipmentDateRange2.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,10 +32,12 @@ public class ShipmentDateRange2 {
@XmlElement(name = "SubQtyVal", required = true)
protected BigDecimal subQtyVal;
- @XmlElement(name = "EarlstShipmntDt")
+ @XmlElement(name = "EarlstShipmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar earlstShipmntDt;
- @XmlElement(name = "LatstShipmntDt")
+ @XmlElement(name = "LatstShipmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar latstShipmntDt;
@@ -67,7 +71,7 @@ public ShipmentDateRange2 setSubQtyVal(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEarlstShipmntDt() {
@@ -79,7 +83,7 @@ public XMLGregorianCalendar getEarlstShipmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShipmentDateRange2 setEarlstShipmntDt(XMLGregorianCalendar value) {
@@ -92,7 +96,7 @@ public ShipmentDateRange2 setEarlstShipmntDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLatstShipmntDt() {
@@ -104,7 +108,7 @@ public XMLGregorianCalendar getLatstShipmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShipmentDateRange2 setLatstShipmntDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification1.java
index 4b41b1117..6f489875d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ShortPaymentIdentification1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class ShortPaymentIdentification1 {
@XmlElement(name = "TxId", required = true)
protected String txId;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstgAgt", required = true)
@@ -65,7 +68,7 @@ public ShortPaymentIdentification1 setTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ShortPaymentIdentification1 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureEnvelope.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureEnvelope.java
index 58e5a1dcd..c3825db82 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureEnvelope.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SignatureEnvelope.java
@@ -34,8 +34,8 @@ public class SignatureEnvelope {
*
* @return
* possible object is
- * {@link Object }
* {@link Element }
+ * {@link Object }
*
*/
public Object getAny() {
@@ -47,8 +47,8 @@ public Object getAny() {
*
* @param value
* allowed object is
- * {@link Object }
* {@link Element }
+ * {@link Object }
*
*/
public SignatureEnvelope setAny(Object value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SimpleIdentificationInformation4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SimpleIdentificationInformation4.java
index a72d223d3..6510e583d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SimpleIdentificationInformation4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SimpleIdentificationInformation4.java
@@ -12,7 +12,7 @@
/**
- * Information related to an identification, for example, party identification or account identification.
+ * Information related to an identification, eg, party identification or account identification.
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRegulatoryReporting3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRegulatoryReporting3.java
index 320ba870b..1027c5bcf 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRegulatoryReporting3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRegulatoryReporting3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class StructuredRegulatoryReporting3 {
@XmlElement(name = "Tp")
protected String tp;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Ctry")
@@ -76,7 +79,7 @@ public StructuredRegulatoryReporting3 setTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -88,7 +91,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StructuredRegulatoryReporting3 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation6.java
index 8ec38457e..5a82c9635 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/StructuredRemittanceInformation6.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class StructuredRemittanceInformation6 {
@XmlElement(name = "RfrdDocInf")
protected ReferredDocumentInformation1 rfrdDocInf;
- @XmlElement(name = "RfrdDocRltdDt")
+ @XmlElement(name = "RfrdDocRltdDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar rfrdDocRltdDt;
@XmlElement(name = "RfrdDocAmt")
@@ -79,7 +82,7 @@ public StructuredRemittanceInformation6 setRfrdDocInf(ReferredDocumentInformatio
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getRfrdDocRltdDt() {
@@ -91,7 +94,7 @@ public XMLGregorianCalendar getRfrdDocRltdDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public StructuredRemittanceInformation6 setRfrdDocRltdDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType2Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType2Code.java
index 0cd3905a4..0ee9c9b9d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType2Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemBalanceType2Code.java
@@ -156,19 +156,19 @@ public enum SystemBalanceType2Code {
EAST,
/**
- * Balance representing the sum of entries as a result of payments processing. Entries relating to fees, interest, or other movements not a result of payments sent or received by the account owner are not included.
+ * Balance representing the sum of entries as a result of payments processing. Entries relating to fees, interest, or other movements not a result of payments sent or received by the account owner are not included.
*
*/
PYMT,
/**
- * Balance representing the regulatory reserve that a financial institution must have with the account servicing institution, such as the minimum credit balance a financial institution is to keep with its Central Bank for mandatory reserve purposes. In some countries, a blocked balance is known as a 'reserve' balance.
+ * Balance representing the regulatory reserve that a financial institution must have with the account servicing institution, such as the minimum credit balance a financial institution is to keep with its Central Bank for mandatory reserve purposes. In some countries, a blocked balance is known as a 'reserve' balance.
*
*/
BLCK,
/**
- * Balance, composed of booked entries and pending items known at the time of calculation , which projects the end of day balance if everything is booked on the account and no other entry is posted.
+ * Balance, composed of booked entries and pending items known at the time of calculation, which projects the end of day balance if everything is booked on the account and no other entry is posted.
*
*/
XPCD,
@@ -223,7 +223,7 @@ public enum SystemBalanceType2Code {
NOTE,
/**
- * Balance representing the forecast of total of all cash legs for trades that are ready to settle via a a central securities depository. Amounts shown are still subject to processing of the securities settlement.
+ * Balance representing the forecast of total of all cash legs for trades that are ready to settle via a central securities depository. Amounts shown are still subject to processing of the securities settlement.
*
*/
FSET,
@@ -266,7 +266,7 @@ public enum SystemBalanceType2Code {
FUND,
/**
- * Balance representing the fictive forecast of automated direct debits or payment based on standing arrangements between the a central securities depository and the user.
+ * Balance representing the fictive forecast of automated direct debits or payment based on standing arrangements between a central securities depository and the user.
*
* Usage: Pay-Ins and Pay-Outs can be different based on individual payment instructions or available funds.
*
@@ -352,13 +352,13 @@ public enum SystemBalanceType2Code {
SCOL,
/**
- * Balance representing the cash-equivalent resulting from evaluation of incoming securities, qualified to serve as collateral and actually used as collateral, which have been settled during the settlement process.
+ * Balance representing the cash-equivalent resulting from evaluation of incoming securities, qualified to serve as collateral and actually used as collateral, which have been settled during the settlement process.
*
*/
SCOU,
/**
- * Balance representing the actual total of all asset servicing transactions such as dividends, income corporate actions equivalents, tax returns, redemptions, etc.
+ * Balance representing the actual total of all asset servicing transactions such as dividends, income corporate actions equivalents, tax returns, redemptions, etc.
*
*/
CUSA,
@@ -376,13 +376,13 @@ public enum SystemBalanceType2Code {
XCHN,
/**
- * Balance representing the cash equivalent of all settled securities transactions
+ * Balance representing the cash equivalent of all settled securities transactions.
*
*/
DSET,
/**
- * Balance representing the cash equivalent of transactions with a lack of holdings.
+ * Balance representing the cash equivalent of transactions with a lack of holdings.
*
*/
LACK,
@@ -448,7 +448,7 @@ public enum SystemBalanceType2Code {
BSCC,
/**
- * Balance represents the settlement account processor queue amount
+ * Balance represents the settlement account processor queue amount.
*
*/
SAPP,
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent3.java
index 36f46ab56..4253fa280 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/SystemEvent3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,16 +33,20 @@ public class SystemEvent3 {
@XmlElement(name = "Tp", required = true)
protected SystemEventType4Choice tp;
- @XmlElement(name = "SchdldTm", required = true)
+ @XmlElement(name = "SchdldTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar schdldTm;
- @XmlElement(name = "FctvTm")
+ @XmlElement(name = "FctvTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar fctvTm;
- @XmlElement(name = "StartTm")
+ @XmlElement(name = "StartTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startTm;
- @XmlElement(name = "EndTm")
+ @XmlElement(name = "EndTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endTm;
@@ -74,7 +80,7 @@ public SystemEvent3 setTp(SystemEventType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSchdldTm() {
@@ -86,7 +92,7 @@ public XMLGregorianCalendar getSchdldTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent3 setSchdldTm(XMLGregorianCalendar value) {
@@ -99,7 +105,7 @@ public SystemEvent3 setSchdldTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFctvTm() {
@@ -111,7 +117,7 @@ public XMLGregorianCalendar getFctvTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent3 setFctvTm(XMLGregorianCalendar value) {
@@ -124,7 +130,7 @@ public SystemEvent3 setFctvTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartTm() {
@@ -136,7 +142,7 @@ public XMLGregorianCalendar getStartTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent3 setStartTm(XMLGregorianCalendar value) {
@@ -149,7 +155,7 @@ public SystemEvent3 setStartTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndTm() {
@@ -161,7 +167,7 @@ public XMLGregorianCalendar getEndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public SystemEvent3 setEndTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxData1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxData1.java
index 956789d57..ea238ac7c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxData1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxData1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,7 +56,8 @@ public class TaxData1 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -267,7 +270,7 @@ public TaxData1 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxData1 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation10.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation10.java
index 17c480a18..224af41c8 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation10.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class TaxInformation10 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -239,7 +242,7 @@ public TaxInformation10 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -251,7 +254,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation10 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation2.java
index ceba68d04..c000f9f45 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class TaxInformation2 {
protected CurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected CurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "TaxDt")
+ @XmlElement(name = "TaxDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar taxDt;
@XmlElement(name = "TaxTpInf")
@@ -207,7 +210,7 @@ public TaxInformation2 setTtlTaxAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTaxDt() {
@@ -219,7 +222,7 @@ public XMLGregorianCalendar getTaxDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation2 setTaxDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation3.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation3.java
index 82b1e85ef..fee84b1ca 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation3.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class TaxInformation3 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -239,7 +242,7 @@ public TaxInformation3 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -251,7 +254,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation3 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation4.java
index 5520ca04f..e2d93fbfc 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation4.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,7 +56,8 @@ public class TaxInformation4 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -267,7 +270,7 @@ public TaxInformation4 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation4 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation6.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation6.java
index d8ad95d73..d3023015d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation6.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class TaxInformation6 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -239,7 +242,7 @@ public TaxInformation6 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -251,7 +254,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation6 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation7.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation7.java
index 16543a3c8..61842e246 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation7.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation7.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,7 +56,8 @@ public class TaxInformation7 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -267,7 +270,7 @@ public TaxInformation7 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -279,7 +282,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation7 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation8.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation8.java
index 52c0f0364..fa34b816c 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation8.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxInformation8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class TaxInformation8 {
protected ActiveOrHistoricCurrencyAndAmount ttlTaxblBaseAmt;
@XmlElement(name = "TtlTaxAmt")
protected ActiveOrHistoricCurrencyAndAmount ttlTaxAmt;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "SeqNb")
@@ -239,7 +242,7 @@ public TaxInformation8 setTtlTaxAmt(ActiveOrHistoricCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -251,7 +254,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxInformation8 setDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod1.java
index d3da51508..f4515645a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class TaxPeriod1 {
- @XmlElement(name = "Yr")
+ @XmlElement(name = "Yr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar yr;
@XmlElement(name = "Tp")
@@ -41,7 +44,7 @@ public class TaxPeriod1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getYr() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getYr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxPeriod1 setYr(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod2.java
index 9fcd95f00..5aeb115fe 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TaxPeriod2.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -27,7 +29,8 @@
})
public class TaxPeriod2 {
- @XmlElement(name = "Yr")
+ @XmlElement(name = "Yr", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar yr;
@XmlElement(name = "Tp")
@@ -41,7 +44,7 @@ public class TaxPeriod2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getYr() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getYr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TaxPeriod2 setYr(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails1.java
index 20e9ac678..c577b94de 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TimePeriodDetails1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class TimePeriodDetails1 {
- @XmlElement(name = "FrTm", required = true)
+ @XmlElement(name = "FrTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar frTm;
- @XmlElement(name = "ToTm")
+ @XmlElement(name = "ToTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar toTm;
@@ -38,7 +42,7 @@ public class TimePeriodDetails1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrTm() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getFrTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriodDetails1 setFrTm(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public TimePeriodDetails1 setFrTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getToTm() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getToTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TimePeriodDetails1 setToTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TotalNumber1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TotalNumber1.java
index 2cb1b1edc..c268fcbb0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TotalNumber1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TotalNumber1.java
@@ -12,7 +12,7 @@
/**
- * Settlement transaction numbering information.
+ * Settlement transaction numbering information
*
*
*
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability4.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability4.java
index 391c56bc0..0b4594881 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability4.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Traceability4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,10 +34,12 @@ public class Traceability4 {
protected GenericIdentification77 rlayId;
@XmlElement(name = "SeqNb")
protected String seqNb;
- @XmlElement(name = "TracDtTmIn", required = true)
+ @XmlElement(name = "TracDtTmIn", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmIn;
- @XmlElement(name = "TracDtTmOut", required = true)
+ @XmlElement(name = "TracDtTmOut", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tracDtTmOut;
@@ -94,7 +98,7 @@ public Traceability4 setSeqNb(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmIn() {
@@ -106,7 +110,7 @@ public XMLGregorianCalendar getTracDtTmIn() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability4 setTracDtTmIn(XMLGregorianCalendar value) {
@@ -119,7 +123,7 @@ public Traceability4 setTracDtTmIn(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTracDtTmOut() {
@@ -131,7 +135,7 @@ public XMLGregorianCalendar getTracDtTmOut() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Traceability4 setTracDtTmOut(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery1.java
index fec6b16ed..56e0d497d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeDelivery1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class TradeDelivery1 {
@XmlElement(name = "DlvryPrd")
protected Period1 dlvryPrd;
- @XmlElement(name = "DlvryDtTm")
+ @XmlElement(name = "DlvryDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dlvryDtTm;
@XmlElement(name = "ShipFr")
@@ -79,7 +82,7 @@ public TradeDelivery1 setDlvryPrd(Period1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDlvryDtTm() {
@@ -91,7 +94,7 @@ public XMLGregorianCalendar getDlvryDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeDelivery1 setDlvryDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeStatus1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeStatus1.java
index feb3aa078..212a462a0 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeStatus1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeStatus1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class TradeStatus1 {
protected String xtndedSts;
@XmlElement(name = "StsSubTp")
protected String stsSubTp;
- @XmlElement(name = "StsTm")
+ @XmlElement(name = "StsTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar stsTm;
@XmlElement(name = "StsOrgtr")
@@ -178,7 +181,7 @@ public TradeStatus1 setStsSubTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStsTm() {
@@ -190,7 +193,7 @@ public XMLGregorianCalendar getStsTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeStatus1 setStsTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates2.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates2.java
index c58090d30..6bb3267a2 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates2.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionDates2.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,25 +37,32 @@
})
public class TransactionDates2 {
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "TradActvtyCtrctlSttlmDt")
+ @XmlElement(name = "TradActvtyCtrctlSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradActvtyCtrctlSttlmDt;
- @XmlElement(name = "TradDt")
+ @XmlElement(name = "TradDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "StartDt")
+ @XmlElement(name = "StartDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar startDt;
- @XmlElement(name = "EndDt")
+ @XmlElement(name = "EndDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar endDt;
- @XmlElement(name = "TxDtTm")
+ @XmlElement(name = "TxDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar txDtTm;
@XmlElement(name = "Prtry")
@@ -63,7 +73,7 @@ public class TransactionDates2 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -75,7 +85,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -88,7 +98,7 @@ public TransactionDates2 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradActvtyCtrctlSttlmDt() {
@@ -100,7 +110,7 @@ public XMLGregorianCalendar getTradActvtyCtrctlSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setTradActvtyCtrctlSttlmDt(XMLGregorianCalendar value) {
@@ -113,7 +123,7 @@ public TransactionDates2 setTradActvtyCtrctlSttlmDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -125,7 +135,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setTradDt(XMLGregorianCalendar value) {
@@ -138,7 +148,7 @@ public TransactionDates2 setTradDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -150,7 +160,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -163,7 +173,7 @@ public TransactionDates2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getStartDt() {
@@ -175,7 +185,7 @@ public XMLGregorianCalendar getStartDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setStartDt(XMLGregorianCalendar value) {
@@ -188,7 +198,7 @@ public TransactionDates2 setStartDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getEndDt() {
@@ -200,7 +210,7 @@ public XMLGregorianCalendar getEndDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setEndDt(XMLGregorianCalendar value) {
@@ -213,7 +223,7 @@ public TransactionDates2 setEndDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDtTm() {
@@ -225,7 +235,7 @@ public XMLGregorianCalendar getTxDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionDates2 setTxDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionIdentifier1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionIdentifier1.java
index 23638accb..b7f21846d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionIdentifier1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TransactionIdentifier1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,7 +28,8 @@
})
public class TransactionIdentifier1 {
- @XmlElement(name = "TxDtTm", required = true)
+ @XmlElement(name = "TxDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar txDtTm;
@XmlElement(name = "TxRef", required = true)
@@ -37,7 +40,7 @@ public class TransactionIdentifier1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDtTm() {
@@ -49,7 +52,7 @@ public XMLGregorianCalendar getTxDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TransactionIdentifier1 setTxDtTm(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UTCOffset1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UTCOffset1.java
index 5498d7360..b22310f5d 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UTCOffset1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UTCOffset1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@ public class UTCOffset1 {
@XmlElement(name = "Sgn")
protected boolean sgn;
- @XmlElement(name = "NbOfHrs", required = true)
+ @XmlElement(name = "NbOfHrs", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar nbOfHrs;
@@ -54,7 +57,7 @@ public UTCOffset1 setSgn(boolean value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNbOfHrs() {
@@ -66,7 +69,7 @@ public XMLGregorianCalendar getNbOfHrs() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UTCOffset1 setNbOfHrs(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingTradeTransaction1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingTradeTransaction1.java
index f0f9ba6ff..840d3c0a4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingTradeTransaction1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnderlyingTradeTransaction1.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +40,12 @@ public class UnderlyingTradeTransaction1 {
protected UnderlyingTradeTransactionType1Choice tp;
@XmlElement(name = "Id")
protected String id;
- @XmlElement(name = "TxDt")
+ @XmlElement(name = "TxDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar txDt;
- @XmlElement(name = "TndrClsgDt")
+ @XmlElement(name = "TndrClsgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tndrClsgDt;
@XmlElement(name = "TxAmt")
@@ -106,7 +110,7 @@ public UnderlyingTradeTransaction1 setId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxDt() {
@@ -118,7 +122,7 @@ public XMLGregorianCalendar getTxDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingTradeTransaction1 setTxDt(XMLGregorianCalendar value) {
@@ -131,7 +135,7 @@ public UnderlyingTradeTransaction1 setTxDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTndrClsgDt() {
@@ -143,7 +147,7 @@ public XMLGregorianCalendar getTndrClsgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UnderlyingTradeTransaction1 setTndrClsgDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnitOfMeasure1Code.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnitOfMeasure1Code.java
index ac4ccb304..bcc974ec4 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnitOfMeasure1Code.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UnitOfMeasure1Code.java
@@ -89,7 +89,7 @@ public enum UnitOfMeasure1Code {
USGA,
/**
- * Unit of measure that is equal to a 1,000th of a kilo.
+ * Unit of measure that is equal to a 1, 000th of a kilo.
*
*/
GRAM,
@@ -119,7 +119,7 @@ public enum UnitOfMeasure1Code {
METR,
/**
- * One 100th part of a metre.
+ * Unit of measure that is equal to one hundredth of a metre.
*
*/
CMET,
@@ -185,13 +185,13 @@ public enum UnitOfMeasure1Code {
USPI,
/**
- * Unit of length equal to 1,760 yards
+ * Unit of length equal to 1, 760 yards.
*
*/
MILE,
/**
- * Unit of measure that is equal to 1,000 meters.
+ * Unit of measure that is equal to 1, 000 meters.
*
*/
KMET,
@@ -209,7 +209,7 @@ public enum UnitOfMeasure1Code {
SQKI,
/**
- * Unit of measure that is equal to 10,000 square meters.
+ * Unit of measure that is equal to 10, 000 square meters.
*
*/
HECT,
@@ -263,7 +263,7 @@ public enum UnitOfMeasure1Code {
SQIN,
/**
- * Unit of measure equal to 4,840 square yards.
+ * Unit of measure equal to 4, 840 square yards.
*
*/
ACRE;
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDate1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDate1.java
index 2261bfad1..da4ac8846 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDate1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/UpdateLogDate1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -26,10 +28,12 @@
})
public class UpdateLogDate1 {
- @XmlElement(name = "Od", required = true)
+ @XmlElement(name = "Od", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar od;
- @XmlElement(name = "New", required = true)
+ @XmlElement(name = "New", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar _new;
@@ -38,7 +42,7 @@ public class UpdateLogDate1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOd() {
@@ -50,7 +54,7 @@ public XMLGregorianCalendar getOd() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogDate1 setOd(XMLGregorianCalendar value) {
@@ -63,7 +67,7 @@ public UpdateLogDate1 setOd(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNew() {
@@ -75,7 +79,7 @@ public XMLGregorianCalendar getNew() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public UpdateLogDate1 setNew(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Warrant1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Warrant1.java
index d4560ed4e..c4368d80a 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Warrant1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Warrant1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -28,7 +30,8 @@
})
public class Warrant1 {
- @XmlElement(name = "XpryDt")
+ @XmlElement(name = "XpryDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xpryDt;
@XmlElement(name = "Mltplr")
@@ -41,7 +44,7 @@ public class Warrant1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDt() {
@@ -53,7 +56,7 @@ public XMLGregorianCalendar getXpryDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Warrant1 setXpryDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation1.java b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation1.java
index 728965255..dea9fec65 100644
--- a/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation1.java
+++ b/model-common-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/YieldCalculation1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,12 +40,14 @@ public class YieldCalculation1 {
protected CalculationType1Code clctnTp;
@XmlElement(name = "RedPric")
protected Price1 redPric;
- @XmlElement(name = "ValDtTm", required = true)
+ @XmlElement(name = "ValDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valDtTm;
@XmlElement(name = "ValPrd", required = true)
protected DateTimePeriodChoice valPrd;
- @XmlElement(name = "ClctnDt", required = true)
+ @XmlElement(name = "ClctnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clctnDt;
@@ -127,7 +131,7 @@ public YieldCalculation1 setRedPric(Price1 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDtTm() {
@@ -139,7 +143,7 @@ public XMLGregorianCalendar getValDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public YieldCalculation1 setValDtTm(XMLGregorianCalendar value) {
@@ -177,7 +181,7 @@ public YieldCalculation1 setValPrd(DateTimePeriodChoice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClctnDt() {
@@ -189,7 +193,7 @@ public XMLGregorianCalendar getClctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public YieldCalculation1 setClctnDt(XMLGregorianCalendar value) {
diff --git a/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapter.java b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapter.java
new file mode 100644
index 000000000..e22bad931
--- /dev/null
+++ b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/DefaultXMLGregorianCalendarAdapter.java
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.DatatypeFactory;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Default generic adapter to use when non is provided via the configuration API
+ *
+ * @since 9.2.6
+ */
+class DefaultXMLGregorianCalendarAdapter extends XmlAdapter {
+
+ private final DatatypeFactory factory;
+
+ DefaultXMLGregorianCalendarAdapter() throws DatatypeConfigurationException {
+ this.factory = DatatypeFactory.newInstance();
+ }
+
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ return factory.newXMLGregorianCalendar(value);
+ }
+
+ @Override
+ public String marshal(XMLGregorianCalendar value) throws Exception {
+ if (value != null) {
+ return value.toXMLFormat();
+ }
+ return null;
+ }
+
+}
diff --git a/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateAdapter.java b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateAdapter.java
new file mode 100644
index 000000000..e9615bd67
--- /dev/null
+++ b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateAdapter.java
@@ -0,0 +1,72 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Configured adapter for date elements.
+ *
+ * This implementation is applied in the model with the @XmlJavaTypeAdapter(IsoDateAdapter.class) annotation to
+ * all schema elements with type "ISODate".
+ *
+ * It is implemented as wrapper to inject your own instances when calling the different write/read methods in the model.
+ *
+ * @since 9.2.6
+ */
+public class IsoDateAdapter extends XmlAdapter {
+
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Default constructor for jaxb when non is set via API
+ */
+ public IsoDateAdapter() throws DatatypeConfigurationException {
+ this.customAdapterImpl = new DefaultXMLGregorianCalendarAdapter();
+ }
+
+ /**
+ * Creates a date adapter injecting a custom implementation
+ */
+ public IsoDateAdapter(XmlAdapter customAdapterImpl) {
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the unmarshal method.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ return this.customAdapterImpl.unmarshal(value);
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the marshal method.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ return this.customAdapterImpl.marshal(cal);
+ }
+
+}
diff --git a/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateTimeAdapter.java b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateTimeAdapter.java
new file mode 100644
index 000000000..c22239051
--- /dev/null
+++ b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoDateTimeAdapter.java
@@ -0,0 +1,72 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Configured adapter for date time elements.
+ *
+ * This implementation is applied in the model with the @XmlJavaTypeAdapter(IsoDateTimeAdapter.class) annotation to
+ * all schema elements with type "ISODateTime".
+ *
+ * It is implemented as wrapper to inject your own instances when calling the different write/read methods in the model.
+ *
+ * @since 9.2.6
+ */
+public class IsoDateTimeAdapter extends XmlAdapter {
+
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Default constructor for jaxb when non is set via API
+ */
+ public IsoDateTimeAdapter() throws DatatypeConfigurationException {
+ this.customAdapterImpl = new DefaultXMLGregorianCalendarAdapter();
+ }
+
+ /**
+ * Creates a date time adapter injecting a custom implementation
+ */
+ public IsoDateTimeAdapter(XmlAdapter customAdapterImpl) {
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the unmarshal method.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ return this.customAdapterImpl.unmarshal(value);
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the marshal method.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ return this.customAdapterImpl.marshal(cal);
+ }
+
+}
diff --git a/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoTimeAdapter.java b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoTimeAdapter.java
new file mode 100644
index 000000000..cb978b06c
--- /dev/null
+++ b/model-common-types/src/main/java/com/prowidesoftware/swift/model/mx/adapters/IsoTimeAdapter.java
@@ -0,0 +1,72 @@
+/*
+ * Copyright 2006-2021 Prowide
+ *
+ * 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 com.prowidesoftware.swift.model.mx.adapters;
+
+import javax.xml.bind.annotation.adapters.XmlAdapter;
+import javax.xml.datatype.DatatypeConfigurationException;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+/**
+ * Configured adapter for time elements.
+ *
+ * This implementation is applied in the model with the @XmlJavaTypeAdapter(IsoTimeAdapter.class) annotation to
+ * all schema elements with type "ISOTime".
+ *
+ * It is implemented as wrapper to inject your own instances when calling the different write/read methods in the model.
+ *
+ * @since 9.2.6
+ */
+public class IsoTimeAdapter extends XmlAdapter {
+
+ private final XmlAdapter customAdapterImpl;
+
+ /**
+ * Default constructor for jaxb when non is set via API
+ */
+ public IsoTimeAdapter() throws DatatypeConfigurationException {
+ this.customAdapterImpl = new DefaultXMLGregorianCalendarAdapter();
+ }
+
+ /**
+ * Creates a time adapter injecting a custom implementation
+ */
+ public IsoTimeAdapter(XmlAdapter customAdapterImpl) {
+ this.customAdapterImpl = customAdapterImpl;
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the unmarshal method.
+ *
+ * @param value the XML date time value to convert
+ * @return created calendar object or null if cannot be parsed
+ */
+ @Override
+ public XMLGregorianCalendar unmarshal(String value) throws Exception {
+ return this.customAdapterImpl.unmarshal(value);
+ }
+
+ /**
+ * Invokes the wrapped adapter implementation of the marshal method.
+ *
+ * @param cal the model calendar to marshal
+ * @return formatted content for the XML
+ */
+ @Override
+ public String marshal(XMLGregorianCalendar cal) throws Exception {
+ return this.customAdapterImpl.marshal(cal);
+ }
+
+}
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00700103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00700103.java
index eab9ad35e..5d102f8a5 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00700103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr00700103 parse(String xml) {
- return ((MxFxtr00700103) MxReadImpl.parse(MxFxtr00700103 .class, xml, _classes));
+ return ((MxFxtr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800103.java
index 0f159bae9..230e493bd 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr00800103 parse(String xml) {
- return ((MxFxtr00800103) MxReadImpl.parse(MxFxtr00800103 .class, xml, _classes));
+ return ((MxFxtr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800104.java
index 1cc88312e..7906cdd73 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr00800104 parse(String xml) {
- return ((MxFxtr00800104) MxReadImpl.parse(MxFxtr00800104 .class, xml, _classes));
+ return ((MxFxtr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800105.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800105.java
index 59512c1fd..d0f070cf8 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800105.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr00800105 parse(String xml) {
- return ((MxFxtr00800105) MxReadImpl.parse(MxFxtr00800105 .class, xml, _classes));
+ return ((MxFxtr00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr00800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800106.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800106.java
index ac16d088d..c1c98b81e 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800106.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr00800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr00800106 parse(String xml) {
- return ((MxFxtr00800106) MxReadImpl.parse(MxFxtr00800106 .class, xml, _classes));
+ return ((MxFxtr00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr00800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01200105.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01200105.java
index 82aac9e80..911093935 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01200105.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01200105 parse(String xml) {
- return ((MxFxtr01200105) MxReadImpl.parse(MxFxtr01200105 .class, xml, _classes));
+ return ((MxFxtr01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300102.java
index fbe08297a..fc1966546 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01300102 parse(String xml) {
- return ((MxFxtr01300102) MxReadImpl.parse(MxFxtr01300102 .class, xml, _classes));
+ return ((MxFxtr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300103.java
index 4c35f8aa0..012f7fa42 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01300103 parse(String xml) {
- return ((MxFxtr01300103) MxReadImpl.parse(MxFxtr01300103 .class, xml, _classes));
+ return ((MxFxtr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400101.java
index f8b1d4084..8835e21a3 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01400101 parse(String xml) {
- return ((MxFxtr01400101) MxReadImpl.parse(MxFxtr01400101 .class, xml, _classes));
+ return ((MxFxtr01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400102.java
index ce6a959e0..a5ff3b0c0 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01400102 parse(String xml) {
- return ((MxFxtr01400102) MxReadImpl.parse(MxFxtr01400102 .class, xml, _classes));
+ return ((MxFxtr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400103.java
index de493be4c..52c48d090 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01400103 parse(String xml) {
- return ((MxFxtr01400103) MxReadImpl.parse(MxFxtr01400103 .class, xml, _classes));
+ return ((MxFxtr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400104.java
index b64b7c12f..e2072b2e3 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01400104 parse(String xml) {
- return ((MxFxtr01400104) MxReadImpl.parse(MxFxtr01400104 .class, xml, _classes));
+ return ((MxFxtr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500101.java
index 9645f0420..c52903377 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01500101 parse(String xml) {
- return ((MxFxtr01500101) MxReadImpl.parse(MxFxtr01500101 .class, xml, _classes));
+ return ((MxFxtr01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500102.java
index e7b748c69..0b9e0b698 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01500102 parse(String xml) {
- return ((MxFxtr01500102) MxReadImpl.parse(MxFxtr01500102 .class, xml, _classes));
+ return ((MxFxtr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01500102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01500102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500103.java
index 740e20327..91f6d31de 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01500103 parse(String xml) {
- return ((MxFxtr01500103) MxReadImpl.parse(MxFxtr01500103 .class, xml, _classes));
+ return ((MxFxtr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01500103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01500103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500104.java
index 1bc3f9cb0..f68744968 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01500104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01500104 parse(String xml) {
- return ((MxFxtr01500104) MxReadImpl.parse(MxFxtr01500104 .class, xml, _classes));
+ return ((MxFxtr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01500104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01500104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01500104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600101.java
index 34af4de4b..147bdaf6e 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01600101 parse(String xml) {
- return ((MxFxtr01600101) MxReadImpl.parse(MxFxtr01600101 .class, xml, _classes));
+ return ((MxFxtr01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600102.java
index d855a874b..a1c6a8339 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01600102 parse(String xml) {
- return ((MxFxtr01600102) MxReadImpl.parse(MxFxtr01600102 .class, xml, _classes));
+ return ((MxFxtr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01600102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01600102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600103.java
index 6691b9b36..83eedf886 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01600103 parse(String xml) {
- return ((MxFxtr01600103) MxReadImpl.parse(MxFxtr01600103 .class, xml, _classes));
+ return ((MxFxtr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01600103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01600103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600104.java
index 3eb2add51..ccc76e44b 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01600104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01600104 parse(String xml) {
- return ((MxFxtr01600104) MxReadImpl.parse(MxFxtr01600104 .class, xml, _classes));
+ return ((MxFxtr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01600104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01600104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01600104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700101.java
index d45015dbc..99d6f2ab3 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01700101 parse(String xml) {
- return ((MxFxtr01700101) MxReadImpl.parse(MxFxtr01700101 .class, xml, _classes));
+ return ((MxFxtr01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700102.java
index e4ba8de18..e10b4c3cf 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01700102 parse(String xml) {
- return ((MxFxtr01700102) MxReadImpl.parse(MxFxtr01700102 .class, xml, _classes));
+ return ((MxFxtr01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700103.java
index 72eb9611c..24dfb5340 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01700103 parse(String xml) {
- return ((MxFxtr01700103) MxReadImpl.parse(MxFxtr01700103 .class, xml, _classes));
+ return ((MxFxtr01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700104.java
index 7fc995976..5b07a572c 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr01700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr01700104 parse(String xml) {
- return ((MxFxtr01700104) MxReadImpl.parse(MxFxtr01700104 .class, xml, _classes));
+ return ((MxFxtr01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr01700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr01700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr01700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000101.java
index 0329ccc1a..07f30efd8 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03000101 parse(String xml) {
- return ((MxFxtr03000101) MxReadImpl.parse(MxFxtr03000101 .class, xml, _classes));
+ return ((MxFxtr03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000102.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000102.java
index 30405fc55..652a8ff5f 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000102.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03000102 parse(String xml) {
- return ((MxFxtr03000102) MxReadImpl.parse(MxFxtr03000102 .class, xml, _classes));
+ return ((MxFxtr03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000103.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000103.java
index 4823e8093..306f13d61 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000103.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03000103 parse(String xml) {
- return ((MxFxtr03000103) MxReadImpl.parse(MxFxtr03000103 .class, xml, _classes));
+ return ((MxFxtr03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000104.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000104.java
index ec8def16a..2e162ccd6 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000104.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03000104 parse(String xml) {
- return ((MxFxtr03000104) MxReadImpl.parse(MxFxtr03000104 .class, xml, _classes));
+ return ((MxFxtr03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03100101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03100101.java
index b53496c1d..7cc0fd316 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03100101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03100101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03100101 parse(String xml) {
- return ((MxFxtr03100101) MxReadImpl.parse(MxFxtr03100101 .class, xml, _classes));
+ return ((MxFxtr03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03100101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03100101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03100101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03200101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03200101.java
index 481eeefa2..08201afbc 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03200101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03200101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03200101 parse(String xml) {
- return ((MxFxtr03200101) MxReadImpl.parse(MxFxtr03200101 .class, xml, _classes));
+ return ((MxFxtr03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03200101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03200101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03200101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03300101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03300101.java
index ed33a1c2d..0a12fae09 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03300101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03300101 parse(String xml) {
- return ((MxFxtr03300101) MxReadImpl.parse(MxFxtr03300101 .class, xml, _classes));
+ return ((MxFxtr03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03400101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03400101.java
index 24d821beb..a9ce032bd 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03400101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03400101 parse(String xml) {
- return ((MxFxtr03400101) MxReadImpl.parse(MxFxtr03400101 .class, xml, _classes));
+ return ((MxFxtr03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03500101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03500101.java
index f47d8e26c..41b1f4bd0 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03500101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03500101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03500101 parse(String xml) {
- return ((MxFxtr03500101) MxReadImpl.parse(MxFxtr03500101 .class, xml, _classes));
+ return ((MxFxtr03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03500101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03500101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03500101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03600101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03600101.java
index a40e5aa1c..1e18be5b2 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03600101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03600101 parse(String xml) {
- return ((MxFxtr03600101) MxReadImpl.parse(MxFxtr03600101 .class, xml, _classes));
+ return ((MxFxtr03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03700101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03700101.java
index d999df8dd..72cfe272e 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03700101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03700101 parse(String xml) {
- return ((MxFxtr03700101) MxReadImpl.parse(MxFxtr03700101 .class, xml, _classes));
+ return ((MxFxtr03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03800101.java b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03800101.java
index 7f9e96912..028603b25 100644
--- a/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03800101.java
+++ b/model-fxtr-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxFxtr03800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxFxtr03800101 parse(String xml) {
- return ((MxFxtr03800101) MxReadImpl.parse(MxFxtr03800101 .class, xml, _classes));
+ return ((MxFxtr03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxFxtr03800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxFxtr03800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxFxtr03800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AgreementConditions1.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AgreementConditions1.java
index 81f854c97..7e47610ec 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AgreementConditions1.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AgreementConditions1.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@ public class AgreementConditions1 {
@XmlElement(name = "AgrmtCd", required = true)
protected String agrmtCd;
- @XmlElement(name = "Dt")
+ @XmlElement(name = "Dt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Vrsn")
@@ -65,7 +68,7 @@ public AgreementConditions1 setAgrmtCd(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDt() {
@@ -77,7 +80,7 @@ public XMLGregorianCalendar getDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AgreementConditions1 setDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Confirmation1.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Confirmation1.java
index ef9b83016..4379cd174 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Confirmation1.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Confirmation1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,13 +44,16 @@ public class Confirmation1 {
@XmlElement(name = "ConfSts", required = true)
@XmlSchemaType(name = "string")
protected TradeConfirmationStatus1Code confSts;
- @XmlElement(name = "ConfTm")
+ @XmlElement(name = "ConfTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar confTm;
- @XmlElement(name = "TradPtyConfTm")
+ @XmlElement(name = "TradPtyConfTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar tradPtyConfTm;
- @XmlElement(name = "InitgPtyConfTm")
+ @XmlElement(name = "InitgPtyConfTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar initgPtyConfTm;
@XmlElement(name = "ConfTp", required = true)
@@ -103,7 +108,7 @@ public Confirmation1 setConfSts(TradeConfirmationStatus1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getConfTm() {
@@ -115,7 +120,7 @@ public XMLGregorianCalendar getConfTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Confirmation1 setConfTm(XMLGregorianCalendar value) {
@@ -128,7 +133,7 @@ public Confirmation1 setConfTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradPtyConfTm() {
@@ -140,7 +145,7 @@ public XMLGregorianCalendar getTradPtyConfTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Confirmation1 setTradPtyConfTm(XMLGregorianCalendar value) {
@@ -153,7 +158,7 @@ public Confirmation1 setTradPtyConfTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getInitgPtyConfTm() {
@@ -165,7 +170,7 @@ public XMLGregorianCalendar getInitgPtyConfTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Confirmation1 setInitgPtyConfTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixingConditions1.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixingConditions1.java
index b93450f6d..7626bdc75 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixingConditions1.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/FixingConditions1.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class FixingConditions1 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -53,7 +56,7 @@ public class FixingConditions1 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -65,7 +68,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public FixingConditions1 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01.java
index 797b7cc83..515866467 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01 {
protected MessageIdentification1 advcAckId;
@XmlElement(name = "ReqId", required = true)
protected MessageIdentification1 reqId;
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "TradId", required = true)
@@ -121,7 +124,7 @@ public ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01 setReqId(M
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public ForeignExchangeTradeConfirmationStatusAdviceAcknowledgementV01 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header23.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header23.java
index 66fa6d6e5..33c294766 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header23.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Header23.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class Header23 {
protected GenericIdentification32 rcptPty;
@XmlElement(name = "MsgSeqNb", required = true)
protected BigDecimal msgSeqNb;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@@ -175,7 +178,7 @@ public Header23 setMsgSeqNb(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -187,7 +190,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Header23 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg6.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg6.java
index 31d0e90d8..7ba929bd8 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg6.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/InstrumentLeg6.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +48,8 @@ public class InstrumentLeg6 {
@XmlElement(name = "LegSttlmTp", required = true)
@XmlSchemaType(name = "string")
protected SettlementDateCode legSttlmTp;
- @XmlElement(name = "LegSttlmDt", required = true)
+ @XmlElement(name = "LegSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar legSttlmDt;
@XmlElement(name = "LegLastPric", required = true)
@@ -62,7 +66,8 @@ public class InstrumentLeg6 {
protected ActiveCurrencyAndAmount legRskAmt;
@XmlElement(name = "LegValtnRate", required = true)
protected AgreedRate3 legValtnRate;
- @XmlElement(name = "LegValDt", required = true)
+ @XmlElement(name = "LegValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar legValDt;
@XmlElement(name = "LegCcy", required = true)
@@ -127,7 +132,7 @@ public InstrumentLeg6 setLegSttlmTp(SettlementDateCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLegSttlmDt() {
@@ -139,7 +144,7 @@ public XMLGregorianCalendar getLegSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InstrumentLeg6 setLegSttlmDt(XMLGregorianCalendar value) {
@@ -327,7 +332,7 @@ public InstrumentLeg6 setLegValtnRate(AgreedRate3 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getLegValDt() {
@@ -339,7 +344,7 @@ public XMLGregorianCalendar getLegValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public InstrumentLeg6 setLegValDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningConditions1.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningConditions1.java
index b8c2f12c9..ff1a9ce47 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningConditions1.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OpeningConditions1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class OpeningConditions1 {
@XmlElement(name = "SttlmCcy", required = true)
protected String sttlmCcy;
- @XmlElement(name = "ValtnDt", required = true)
+ @XmlElement(name = "ValtnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valtnDt;
@XmlElement(name = "SttlmRateSrc", required = true)
@@ -67,7 +70,7 @@ public OpeningConditions1 setSttlmCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValtnDt() {
@@ -79,7 +82,7 @@ public XMLGregorianCalendar getValtnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OpeningConditions1 setValtnDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option10.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option10.java
index 10e7df65e..942ab0a44 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option10.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Option10.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class Option10 {
protected BigDecimal voltlyMrgn;
@XmlElement(name = "RskAmt", required = true)
protected ActiveCurrencyAndAmount rskAmt;
- @XmlElement(name = "XpryDtAndTm", required = true)
+ @XmlElement(name = "XpryDtAndTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar xpryDtAndTm;
@XmlElement(name = "XpryLctn", required = true)
@@ -340,7 +343,7 @@ public Option10 setRskAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getXpryDtAndTm() {
@@ -352,7 +355,7 @@ public XMLGregorianCalendar getXpryDtAndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Option10 setXpryDtAndTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount3.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount3.java
index 0af49bd00..c4ab9b6a0 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount3.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PremiumAmount3.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -40,7 +42,8 @@ public class PremiumAmount3 {
protected ActiveCurrencyAndAmount amt;
@XmlElement(name = "DcmlPlcs", required = true)
protected BigDecimal dcmlPlcs;
- @XmlElement(name = "PrmSttlmDt", required = true)
+ @XmlElement(name = "PrmSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar prmSttlmDt;
@XmlElement(name = "PyerPtyRef", required = true)
@@ -153,7 +156,7 @@ public PremiumAmount3 setDcmlPlcs(BigDecimal value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrmSttlmDt() {
@@ -165,7 +168,7 @@ public XMLGregorianCalendar getPrmSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PremiumAmount3 setPrmSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegulatoryReporting6.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegulatoryReporting6.java
index 6b785a8e4..10ec8dbf8 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegulatoryReporting6.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/RegulatoryReporting6.java
@@ -8,7 +8,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -105,10 +108,12 @@ public class RegulatoryReporting6 {
protected Boolean comrclOrTrsrFincgInd;
@XmlElement(name = "FinInstrmId")
protected SecurityIdentification19 finInstrmId;
- @XmlElement(name = "ConfDtAndTmstmp")
+ @XmlElement(name = "ConfDtAndTmstmp", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar confDtAndTmstmp;
- @XmlElement(name = "ClrTmstmp")
+ @XmlElement(name = "ClrTmstmp", type = String.class)
+ @XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar clrTmstmp;
@XmlElement(name = "AddtlRptgInf")
@@ -727,7 +732,7 @@ public RegulatoryReporting6 setFinInstrmId(SecurityIdentification19 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getConfDtAndTmstmp() {
@@ -739,7 +744,7 @@ public XMLGregorianCalendar getConfDtAndTmstmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegulatoryReporting6 setConfDtAndTmstmp(XMLGregorianCalendar value) {
@@ -752,7 +757,7 @@ public RegulatoryReporting6 setConfDtAndTmstmp(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getClrTmstmp() {
@@ -764,7 +769,7 @@ public XMLGregorianCalendar getClrTmstmp() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public RegulatoryReporting6 setClrTmstmp(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade1.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade1.java
index 0ba11eb8c..53cb29d41 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade1.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade1.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -44,7 +46,8 @@ public class Trade1 {
@XmlElement(name = "TradId", required = true)
protected String tradId;
- @XmlElement(name = "DtAndTm", required = true)
+ @XmlElement(name = "DtAndTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtAndTm;
@XmlElement(name = "FXTradPdct")
@@ -70,7 +73,8 @@ public class Trade1 {
protected String symb;
@XmlElement(name = "PlcOfConf")
protected String plcOfConf;
- @XmlElement(name = "TxTm")
+ @XmlElement(name = "TxTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar txTm;
@XmlElement(name = "FXDtls")
@@ -112,7 +116,7 @@ public Trade1 setTradId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtAndTm() {
@@ -124,7 +128,7 @@ public XMLGregorianCalendar getDtAndTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade1 setDtAndTm(XMLGregorianCalendar value) {
@@ -362,7 +366,7 @@ public Trade1 setPlcOfConf(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTxTm() {
@@ -374,7 +378,7 @@ public XMLGregorianCalendar getTxTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade1 setTxTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade2.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade2.java
index 3cb5d6c42..6dd836a1a 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade2.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +44,8 @@ public class Trade2 {
@XmlElement(name = "TradId", required = true)
protected String tradId;
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "FXTradPdct", required = true)
@@ -104,7 +107,7 @@ public Trade2 setTradId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -116,7 +119,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade2 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade3.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade3.java
index a3b998935..8f072c87b 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade3.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/Trade3.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class Trade3 {
@XmlElement(name = "SttlmTp", required = true)
@XmlSchemaType(name = "string")
protected SettlementDateCode sttlmTp;
- @XmlElement(name = "SttlmDt", required = true)
+ @XmlElement(name = "SttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar sttlmDt;
@XmlElement(name = "ValtnRate", required = true)
@@ -58,7 +61,8 @@ public class Trade3 {
protected BigDecimal fwdPts;
@XmlElement(name = "ClctdCtrPtyCcyLastQty", required = true)
protected CurrencyAndAmount clctdCtrPtyCcyLastQty;
- @XmlElement(name = "ValDt", required = true)
+ @XmlElement(name = "ValDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "RskAmt", required = true)
@@ -67,7 +71,8 @@ public class Trade3 {
protected SecurityIdentification18 sctyId;
@XmlElement(name = "FxgCcy")
protected String fxgCcy;
- @XmlElement(name = "FxgDt")
+ @XmlElement(name = "FxgDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fxgDt;
@XmlElement(name = "OptnInd")
@@ -157,7 +162,7 @@ public Trade3 setSttlmTp(SettlementDateCode value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getSttlmDt() {
@@ -169,7 +174,7 @@ public XMLGregorianCalendar getSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade3 setSttlmDt(XMLGregorianCalendar value) {
@@ -257,7 +262,7 @@ public Trade3 setClctdCtrPtyCcyLastQty(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getValDt() {
@@ -269,7 +274,7 @@ public XMLGregorianCalendar getValDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade3 setValDt(XMLGregorianCalendar value) {
@@ -357,7 +362,7 @@ public Trade3 setFxgCcy(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFxgDt() {
@@ -369,7 +374,7 @@ public XMLGregorianCalendar getFxgDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public Trade3 setFxgDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement10.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement10.java
index c053137ca..fcc24211a 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement10.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class TradeAgreement10 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -52,7 +55,7 @@ public class TradeAgreement10 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -64,7 +67,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement10 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement11.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement11.java
index bcca031bb..08bcb05c0 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement11.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@
})
public class TradeAgreement11 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -58,7 +61,7 @@ public class TradeAgreement11 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -70,7 +73,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement11 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement12.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement12.java
index 713187a59..656884acf 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement12.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -36,7 +38,8 @@
})
public class TradeAgreement12 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "MsgId", required = true)
@@ -67,7 +70,7 @@ public class TradeAgreement12 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -79,7 +82,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement12 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement14.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement14.java
index fd53607d7..8978ea1e1 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement14.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement14.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class TradeAgreement14 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -55,7 +58,7 @@ public class TradeAgreement14 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -67,7 +70,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement14 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement15.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement15.java
index e23469a43..7834087e4 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement15.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement15.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@
})
public class TradeAgreement15 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -61,7 +64,7 @@ public class TradeAgreement15 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -73,7 +76,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement15 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement3.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement3.java
index f95e4edf9..aa45271da 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement3.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -29,7 +31,8 @@
})
public class TradeAgreement3 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -46,7 +49,7 @@ public class TradeAgreement3 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -58,7 +61,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement3 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement4.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement4.java
index 7395648a8..c8bc09df4 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement4.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class TradeAgreement4 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -52,7 +55,7 @@ public class TradeAgreement4 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -64,7 +67,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement4 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement5.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement5.java
index 5a1197fff..b1cd97b1c 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement5.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@
})
public class TradeAgreement5 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "NtfctnId", required = true)
@@ -52,7 +55,7 @@ public class TradeAgreement5 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -64,7 +67,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement5 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement7.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement7.java
index 56a08d9ec..be211b113 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement7.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@
})
public class TradeAgreement7 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -49,7 +52,7 @@ public class TradeAgreement7 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -61,7 +64,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement7 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement8.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement8.java
index 8bd61be29..ec8966a30 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement8.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -32,7 +34,8 @@
})
public class TradeAgreement8 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "OrgtrRef", required = true)
@@ -55,7 +58,7 @@ public class TradeAgreement8 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -67,7 +70,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement8 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement9.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement9.java
index 1800f3f7a..9e806baf7 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement9.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeAgreement9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@
})
public class TradeAgreement9 {
- @XmlElement(name = "TradDt", required = true)
+ @XmlElement(name = "TradDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar tradDt;
@XmlElement(name = "MsgId", required = true)
@@ -64,7 +67,7 @@ public class TradeAgreement9 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getTradDt() {
@@ -76,7 +79,7 @@ public XMLGregorianCalendar getTradDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeAgreement9 setTradDt(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData10.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData10.java
index 282910d40..498e9e6af 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData10.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +43,8 @@ public class TradeData10 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType1Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm", required = true)
+ @XmlElement(name = "CurStsDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -157,7 +160,7 @@ public TradeData10 setCurStsSubTp(StatusSubType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -169,7 +172,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData10 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData11.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData11.java
index c79a972fe..dccaa9e22 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData11.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData11.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,13 +45,16 @@ public class TradeData11 {
protected String mtchgSysMtchgRef;
@XmlElement(name = "MtchgSysMtchdSdRef")
protected String mtchgSysMtchdSdRef;
- @XmlElement(name = "CurSttlmDt")
+ @XmlElement(name = "CurSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar curSttlmDt;
- @XmlElement(name = "NewSttlmDt")
+ @XmlElement(name = "NewSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar newSttlmDt;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PdctTp")
@@ -163,7 +169,7 @@ public TradeData11 setMtchgSysMtchdSdRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurSttlmDt() {
@@ -175,7 +181,7 @@ public XMLGregorianCalendar getCurSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData11 setCurSttlmDt(XMLGregorianCalendar value) {
@@ -188,7 +194,7 @@ public TradeData11 setCurSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNewSttlmDt() {
@@ -200,7 +206,7 @@ public XMLGregorianCalendar getNewSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData11 setNewSttlmDt(XMLGregorianCalendar value) {
@@ -213,7 +219,7 @@ public TradeData11 setNewSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -225,7 +231,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData11 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData12.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData12.java
index 755b51766..5e859f776 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData12.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class TradeData12 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType2Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm", required = true)
+ @XmlElement(name = "CurStsDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -163,7 +166,7 @@ public TradeData12 setCurStsSubTp(StatusSubType2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -175,7 +178,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData12 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData14.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData14.java
index c6e23d82e..c73da2f40 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData14.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData14.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class TradeData14 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType2Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -213,7 +216,7 @@ public TradeData14 setCurStsSubTp(StatusSubType2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData14 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData15.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData15.java
index 2e3844d20..ac81b0710 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData15.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData15.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class TradeData15 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType2Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -64,7 +67,8 @@ public class TradeData15 {
@XmlElement(name = "PrvsStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType2Code prvsStsSubTp;
- @XmlElement(name = "PrvsStsDtTm")
+ @XmlElement(name = "PrvsStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prvsStsDtTm;
@XmlElement(name = "PdctTp")
@@ -279,7 +283,7 @@ public TradeData15 setCurStsSubTp(StatusSubType2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -291,7 +295,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData15 setCurStsDtTm(XMLGregorianCalendar value) {
@@ -354,7 +358,7 @@ public TradeData15 setPrvsStsSubTp(StatusSubType2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrvsStsDtTm() {
@@ -366,7 +370,7 @@ public XMLGregorianCalendar getPrvsStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData15 setPrvsStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData16.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData16.java
index 893d079d6..78683a41b 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData16.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData16.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -46,7 +48,8 @@ public class TradeData16 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType2Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -210,7 +213,7 @@ public TradeData16 setCurStsSubTp(StatusSubType2Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -222,7 +225,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData16 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData3.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData3.java
index 3c4af1e66..446edf6ec 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData3.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData3.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class TradeData3 {
protected Status5Choice curSts;
@XmlElement(name = "CurStsSubTp")
protected String curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -183,7 +186,7 @@ public TradeData3 setCurStsSubTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -195,7 +198,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData3 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData4.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData4.java
index 2a867e0db..ba86ba7d3 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData4.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -37,7 +39,8 @@ public class TradeData4 {
protected Status5Choice curSts;
@XmlElement(name = "CurStsSubTp")
protected String curStsSubTp;
- @XmlElement(name = "CurStsDtTm", required = true)
+ @XmlElement(name = "CurStsDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -127,7 +130,7 @@ public TradeData4 setCurStsSubTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -139,7 +142,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData4 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData5.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData5.java
index 1665d496d..916bfe185 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData5.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +37,8 @@ public class TradeData5 {
protected String ntfctnId;
@XmlElement(name = "MtchgSysMtchgRef")
protected String mtchgSysMtchgRef;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PdctTp")
@@ -121,7 +124,7 @@ public TradeData5 setMtchgSysMtchgRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -133,7 +136,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData5 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData6.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData6.java
index dfe2acb9f..11d0b2596 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData6.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData6.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,14 +49,16 @@ public class TradeData6 {
protected Status6Choice curSts;
@XmlElement(name = "CurStsSubTp")
protected String curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
protected Status6Choice prvsSts;
@XmlElement(name = "PrvsStsSubTp")
protected String prvsStsSubTp;
- @XmlElement(name = "PrvsStsDtTm")
+ @XmlElement(name = "PrvsStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prvsStsDtTm;
@XmlElement(name = "PdctTp")
@@ -215,7 +219,7 @@ public TradeData6 setCurStsSubTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -227,7 +231,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData6 setCurStsDtTm(XMLGregorianCalendar value) {
@@ -290,7 +294,7 @@ public TradeData6 setPrvsStsSubTp(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrvsStsDtTm() {
@@ -302,7 +306,7 @@ public XMLGregorianCalendar getPrvsStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData6 setPrvsStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData7.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData7.java
index 674cca5fe..ff92f266b 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData7.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class TradeData7 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType1Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -64,7 +67,8 @@ public class TradeData7 {
@XmlElement(name = "PrvsStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType1Code prvsStsSubTp;
- @XmlElement(name = "PrvsStsDtTm")
+ @XmlElement(name = "PrvsStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar prvsStsDtTm;
@XmlElement(name = "PdctTp")
@@ -279,7 +283,7 @@ public TradeData7 setCurStsSubTp(StatusSubType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -291,7 +295,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData7 setCurStsDtTm(XMLGregorianCalendar value) {
@@ -354,7 +358,7 @@ public TradeData7 setPrvsStsSubTp(StatusSubType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPrvsStsDtTm() {
@@ -366,7 +370,7 @@ public XMLGregorianCalendar getPrvsStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData7 setPrvsStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData8.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData8.java
index ac021310f..cd6409283 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData8.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData8.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,13 +45,16 @@ public class TradeData8 {
protected String mtchgSysMtchgRef;
@XmlElement(name = "MtchgSysMtchdSdRef")
protected String mtchgSysMtchdSdRef;
- @XmlElement(name = "CurSttlmDt")
+ @XmlElement(name = "CurSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar curSttlmDt;
- @XmlElement(name = "NewSttlmDt")
+ @XmlElement(name = "NewSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar newSttlmDt;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PdctTp")
@@ -163,7 +169,7 @@ public TradeData8 setMtchgSysMtchdSdRef(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurSttlmDt() {
@@ -175,7 +181,7 @@ public XMLGregorianCalendar getCurSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData8 setCurSttlmDt(XMLGregorianCalendar value) {
@@ -188,7 +194,7 @@ public TradeData8 setCurSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getNewSttlmDt() {
@@ -200,7 +206,7 @@ public XMLGregorianCalendar getNewSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData8 setNewSttlmDt(XMLGregorianCalendar value) {
@@ -213,7 +219,7 @@ public TradeData8 setNewSttlmDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -225,7 +231,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData8 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData9.java b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData9.java
index 623bb0abc..0fe0368bd 100644
--- a/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData9.java
+++ b/model-fxtr-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/TradeData9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class TradeData9 {
@XmlElement(name = "CurStsSubTp")
@XmlSchemaType(name = "string")
protected StatusSubType1Code curStsSubTp;
- @XmlElement(name = "CurStsDtTm")
+ @XmlElement(name = "CurStsDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
@@ -213,7 +216,7 @@ public TradeData9 setCurStsSubTp(StatusSubType1Code value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
@@ -225,7 +228,7 @@ public XMLGregorianCalendar getCurStsDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public TradeData9 setCurStsDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200102.java
index 452e230d9..3fc4c0db8 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200102 parse(String xml) {
- return ((MxPacs00200102) MxReadImpl.parse(MxPacs00200102 .class, xml, _classes));
+ return ((MxPacs00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200103.java
index 947c8a1d3..b5c7b2bb6 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200103 parse(String xml) {
- return ((MxPacs00200103) MxReadImpl.parse(MxPacs00200103 .class, xml, _classes));
+ return ((MxPacs00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200104.java
index 07b96d182..b331919f3 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200104 parse(String xml) {
- return ((MxPacs00200104) MxReadImpl.parse(MxPacs00200104 .class, xml, _classes));
+ return ((MxPacs00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200105.java
index 04802712d..8d0851cda 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200105 parse(String xml) {
- return ((MxPacs00200105) MxReadImpl.parse(MxPacs00200105 .class, xml, _classes));
+ return ((MxPacs00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200106.java
index 9f573fb8a..7031361e3 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200106 parse(String xml) {
- return ((MxPacs00200106) MxReadImpl.parse(MxPacs00200106 .class, xml, _classes));
+ return ((MxPacs00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200107.java
index bc078fe35..3fd112576 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200107 parse(String xml) {
- return ((MxPacs00200107) MxReadImpl.parse(MxPacs00200107 .class, xml, _classes));
+ return ((MxPacs00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200108.java
index d8134e2e3..e67589d0d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200108 parse(String xml) {
- return ((MxPacs00200108) MxReadImpl.parse(MxPacs00200108 .class, xml, _classes));
+ return ((MxPacs00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200109.java
index 5f2b06d29..b99967fb6 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200109 parse(String xml) {
- return ((MxPacs00200109) MxReadImpl.parse(MxPacs00200109 .class, xml, _classes));
+ return ((MxPacs00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200110.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200110.java
index b09b74267..b076dd2de 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200110.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200110 parse(String xml) {
- return ((MxPacs00200110) MxReadImpl.parse(MxPacs00200110 .class, xml, _classes));
+ return ((MxPacs00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200111.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200111.java
index f3ac436ec..1310f9b61 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200111.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200111.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200111 parse(String xml) {
- return ((MxPacs00200111) MxReadImpl.parse(MxPacs00200111 .class, xml, _classes));
+ return ((MxPacs00200111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200111 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200112.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200112.java
index 5a8e61cf3..d495be2ba 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200112.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200112.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200112 parse(String xml) {
- return ((MxPacs00200112) MxReadImpl.parse(MxPacs00200112 .class, xml, _classes));
+ return ((MxPacs00200112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200112 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200112) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200112 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200202.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200202.java
index ed210ca7f..1bf329c16 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200202.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200202 parse(String xml) {
- return ((MxPacs00200202) MxReadImpl.parse(MxPacs00200202 .class, xml, _classes));
+ return ((MxPacs00200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200203.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200203.java
index f1b668d6a..4876eda6d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200203.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200203 parse(String xml) {
- return ((MxPacs00200203) MxReadImpl.parse(MxPacs00200203 .class, xml, _classes));
+ return ((MxPacs00200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200302.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200302.java
index 514fd4b69..ca58d6903 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200302.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200302.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200302 parse(String xml) {
- return ((MxPacs00200302) MxReadImpl.parse(MxPacs00200302 .class, xml, _classes));
+ return ((MxPacs00200302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200302 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200303.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200303.java
index a7fc9097d..3fcbbf762 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200303.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00200303.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00200303 parse(String xml) {
- return ((MxPacs00200303) MxReadImpl.parse(MxPacs00200303 .class, xml, _classes));
+ return ((MxPacs00200303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00200303 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00200303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00200303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300101.java
index 33bf5ad6c..689e08429 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300101 parse(String xml) {
- return ((MxPacs00300101) MxReadImpl.parse(MxPacs00300101 .class, xml, _classes));
+ return ((MxPacs00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300102.java
index 6e40ee9aa..be1a40384 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300102 parse(String xml) {
- return ((MxPacs00300102) MxReadImpl.parse(MxPacs00300102 .class, xml, _classes));
+ return ((MxPacs00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300103.java
index 895e47c25..ed3251572 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300103 parse(String xml) {
- return ((MxPacs00300103) MxReadImpl.parse(MxPacs00300103 .class, xml, _classes));
+ return ((MxPacs00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300104.java
index d80f9b624..4b299c3ac 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300104 parse(String xml) {
- return ((MxPacs00300104) MxReadImpl.parse(MxPacs00300104 .class, xml, _classes));
+ return ((MxPacs00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300105.java
index 5ebf3c210..8c8ed40c5 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300105 parse(String xml) {
- return ((MxPacs00300105) MxReadImpl.parse(MxPacs00300105 .class, xml, _classes));
+ return ((MxPacs00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300106.java
index 2ac3fdcac..9ff70be6b 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300106 parse(String xml) {
- return ((MxPacs00300106) MxReadImpl.parse(MxPacs00300106 .class, xml, _classes));
+ return ((MxPacs00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300107.java
index 9c46b5011..fb75c6576 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300107 parse(String xml) {
- return ((MxPacs00300107) MxReadImpl.parse(MxPacs00300107 .class, xml, _classes));
+ return ((MxPacs00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300108.java
index bc12317a9..94a8bfdcc 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300108 parse(String xml) {
- return ((MxPacs00300108) MxReadImpl.parse(MxPacs00300108 .class, xml, _classes));
+ return ((MxPacs00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300109.java
index d7f27d653..db3cb0cc5 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300109 parse(String xml) {
- return ((MxPacs00300109) MxReadImpl.parse(MxPacs00300109 .class, xml, _classes));
+ return ((MxPacs00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300202.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300202.java
index 3afd66a02..691806d92 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300202.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300202 parse(String xml) {
- return ((MxPacs00300202) MxReadImpl.parse(MxPacs00300202 .class, xml, _classes));
+ return ((MxPacs00300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300203.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300203.java
index cc3ae1168..7ba9a6b29 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300203.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300203 parse(String xml) {
- return ((MxPacs00300203) MxReadImpl.parse(MxPacs00300203 .class, xml, _classes));
+ return ((MxPacs00300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300302.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300302.java
index 31dba72cc..6c977013a 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300302.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300302.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300302 parse(String xml) {
- return ((MxPacs00300302) MxReadImpl.parse(MxPacs00300302 .class, xml, _classes));
+ return ((MxPacs00300302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300302 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300303.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300303.java
index 44c882133..99767ee56 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300303.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00300303.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00300303 parse(String xml) {
- return ((MxPacs00300303) MxReadImpl.parse(MxPacs00300303 .class, xml, _classes));
+ return ((MxPacs00300303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00300303 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00300303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00300303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400101.java
index d13dd2215..0f81379c9 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400101 parse(String xml) {
- return ((MxPacs00400101) MxReadImpl.parse(MxPacs00400101 .class, xml, _classes));
+ return ((MxPacs00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400102.java
index d66a9998c..aabdae0ce 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400102 parse(String xml) {
- return ((MxPacs00400102) MxReadImpl.parse(MxPacs00400102 .class, xml, _classes));
+ return ((MxPacs00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400103.java
index 595b02cd7..2dbc39225 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400103 parse(String xml) {
- return ((MxPacs00400103) MxReadImpl.parse(MxPacs00400103 .class, xml, _classes));
+ return ((MxPacs00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400104.java
index 3bb8b8d4c..95d98eb3e 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400104 parse(String xml) {
- return ((MxPacs00400104) MxReadImpl.parse(MxPacs00400104 .class, xml, _classes));
+ return ((MxPacs00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400105.java
index 16315c359..ecd026e05 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400105 parse(String xml) {
- return ((MxPacs00400105) MxReadImpl.parse(MxPacs00400105 .class, xml, _classes));
+ return ((MxPacs00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400106.java
index 51536e3e9..2b4e15a7e 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400106 parse(String xml) {
- return ((MxPacs00400106) MxReadImpl.parse(MxPacs00400106 .class, xml, _classes));
+ return ((MxPacs00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400107.java
index 69a64b496..3952a716d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400107 parse(String xml) {
- return ((MxPacs00400107) MxReadImpl.parse(MxPacs00400107 .class, xml, _classes));
+ return ((MxPacs00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400108.java
index 811224dec..8c25d10c3 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400108 parse(String xml) {
- return ((MxPacs00400108) MxReadImpl.parse(MxPacs00400108 .class, xml, _classes));
+ return ((MxPacs00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400109.java
index 4232e1b1d..8927bc07d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400109 parse(String xml) {
- return ((MxPacs00400109) MxReadImpl.parse(MxPacs00400109 .class, xml, _classes));
+ return ((MxPacs00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400110.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400110.java
index 3cf589112..0de395744 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400110.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400110 parse(String xml) {
- return ((MxPacs00400110) MxReadImpl.parse(MxPacs00400110 .class, xml, _classes));
+ return ((MxPacs00400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400111.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400111.java
index 9622aee53..476a7a9f1 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400111.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400111.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400111 parse(String xml) {
- return ((MxPacs00400111) MxReadImpl.parse(MxPacs00400111 .class, xml, _classes));
+ return ((MxPacs00400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400111 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400202.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400202.java
index 4e33dc58f..1a0b5e18c 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400202.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400202 parse(String xml) {
- return ((MxPacs00400202) MxReadImpl.parse(MxPacs00400202 .class, xml, _classes));
+ return ((MxPacs00400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400203.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400203.java
index 6c2c07145..2b4510828 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400203.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400203 parse(String xml) {
- return ((MxPacs00400203) MxReadImpl.parse(MxPacs00400203 .class, xml, _classes));
+ return ((MxPacs00400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400302.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400302.java
index 1cb675fa2..2afd93934 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400302.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400302.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400302 parse(String xml) {
- return ((MxPacs00400302) MxReadImpl.parse(MxPacs00400302 .class, xml, _classes));
+ return ((MxPacs00400302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400302 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400303.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400303.java
index 5f31e1a7a..42b790ffa 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400303.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00400303.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00400303 parse(String xml) {
- return ((MxPacs00400303) MxReadImpl.parse(MxPacs00400303 .class, xml, _classes));
+ return ((MxPacs00400303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00400303 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00400303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00400303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00600101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00600101.java
index fd81e3175..a878642bd 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00600101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00600101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00600101 parse(String xml) {
- return ((MxPacs00600101) MxReadImpl.parse(MxPacs00600101 .class, xml, _classes));
+ return ((MxPacs00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00600101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00600101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00600101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700101.java
index 68b51593b..1027f66e5 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700101 parse(String xml) {
- return ((MxPacs00700101) MxReadImpl.parse(MxPacs00700101 .class, xml, _classes));
+ return ((MxPacs00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700102.java
index 76e2cf801..04700e271 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700102 parse(String xml) {
- return ((MxPacs00700102) MxReadImpl.parse(MxPacs00700102 .class, xml, _classes));
+ return ((MxPacs00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700103.java
index db0d97926..00cd119d7 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700103 parse(String xml) {
- return ((MxPacs00700103) MxReadImpl.parse(MxPacs00700103 .class, xml, _classes));
+ return ((MxPacs00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700104.java
index ae6b7a07e..90b414146 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700104 parse(String xml) {
- return ((MxPacs00700104) MxReadImpl.parse(MxPacs00700104 .class, xml, _classes));
+ return ((MxPacs00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700105.java
index 8f5af1d0f..342e78560 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700105 parse(String xml) {
- return ((MxPacs00700105) MxReadImpl.parse(MxPacs00700105 .class, xml, _classes));
+ return ((MxPacs00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700106.java
index 736c11019..0d524f8d0 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700106 parse(String xml) {
- return ((MxPacs00700106) MxReadImpl.parse(MxPacs00700106 .class, xml, _classes));
+ return ((MxPacs00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700107.java
index 8bace055e..29a429d4e 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700107 parse(String xml) {
- return ((MxPacs00700107) MxReadImpl.parse(MxPacs00700107 .class, xml, _classes));
+ return ((MxPacs00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700108.java
index b99c07067..a096a0b6d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700108 parse(String xml) {
- return ((MxPacs00700108) MxReadImpl.parse(MxPacs00700108 .class, xml, _classes));
+ return ((MxPacs00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700109.java
index cc51be46d..90f4a35f8 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700109 parse(String xml) {
- return ((MxPacs00700109) MxReadImpl.parse(MxPacs00700109 .class, xml, _classes));
+ return ((MxPacs00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700110.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700110.java
index f8f135b6f..2bf3a7923 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700110.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700110 parse(String xml) {
- return ((MxPacs00700110) MxReadImpl.parse(MxPacs00700110 .class, xml, _classes));
+ return ((MxPacs00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700111.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700111.java
index e8f349068..129b325a1 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700111.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700111.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700111 parse(String xml) {
- return ((MxPacs00700111) MxReadImpl.parse(MxPacs00700111 .class, xml, _classes));
+ return ((MxPacs00700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700111 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700111) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700111 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700202.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700202.java
index 9c25808e8..41317aa99 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700202.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700202 parse(String xml) {
- return ((MxPacs00700202) MxReadImpl.parse(MxPacs00700202 .class, xml, _classes));
+ return ((MxPacs00700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700203.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700203.java
index a5055a6fd..430a13755 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700203.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700203 parse(String xml) {
- return ((MxPacs00700203) MxReadImpl.parse(MxPacs00700203 .class, xml, _classes));
+ return ((MxPacs00700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700302.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700302.java
index 951b54436..291fd8f47 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700302.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700302.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700302 parse(String xml) {
- return ((MxPacs00700302) MxReadImpl.parse(MxPacs00700302 .class, xml, _classes));
+ return ((MxPacs00700302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700302 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700303.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700303.java
index aa1406930..6217aaecb 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700303.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00700303.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00700303 parse(String xml) {
- return ((MxPacs00700303) MxReadImpl.parse(MxPacs00700303 .class, xml, _classes));
+ return ((MxPacs00700303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00700303 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00700303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00700303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800101.java
index fa73b00e9..2fdb7a517 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800101 parse(String xml) {
- return ((MxPacs00800101) MxReadImpl.parse(MxPacs00800101 .class, xml, _classes));
+ return ((MxPacs00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800102.java
index 05df5a1cb..e9dc14ced 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800102 parse(String xml) {
- return ((MxPacs00800102) MxReadImpl.parse(MxPacs00800102 .class, xml, _classes));
+ return ((MxPacs00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800103.java
index ee41bcb8f..a69139a55 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800103 parse(String xml) {
- return ((MxPacs00800103) MxReadImpl.parse(MxPacs00800103 .class, xml, _classes));
+ return ((MxPacs00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800104.java
index 3bd00d29b..4bd41d9e9 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800104 parse(String xml) {
- return ((MxPacs00800104) MxReadImpl.parse(MxPacs00800104 .class, xml, _classes));
+ return ((MxPacs00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800105.java
index 0d1566864..fb8026d21 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800105 parse(String xml) {
- return ((MxPacs00800105) MxReadImpl.parse(MxPacs00800105 .class, xml, _classes));
+ return ((MxPacs00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800106.java
index 1ad9a8186..70663c411 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800106 parse(String xml) {
- return ((MxPacs00800106) MxReadImpl.parse(MxPacs00800106 .class, xml, _classes));
+ return ((MxPacs00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800107.java
index 0afadd5ea..6c6427fbc 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800107 parse(String xml) {
- return ((MxPacs00800107) MxReadImpl.parse(MxPacs00800107 .class, xml, _classes));
+ return ((MxPacs00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800108.java
index 8f9feda3c..fc1979488 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800108 parse(String xml) {
- return ((MxPacs00800108) MxReadImpl.parse(MxPacs00800108 .class, xml, _classes));
+ return ((MxPacs00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800109.java
index f400ffc3c..b6ee6b8ff 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800109 parse(String xml) {
- return ((MxPacs00800109) MxReadImpl.parse(MxPacs00800109 .class, xml, _classes));
+ return ((MxPacs00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800110.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800110.java
index aca1ae319..487e983e0 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800110.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800110 parse(String xml) {
- return ((MxPacs00800110) MxReadImpl.parse(MxPacs00800110 .class, xml, _classes));
+ return ((MxPacs00800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800202.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800202.java
index 1211c5a5e..042a85119 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800202.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800202.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800202 parse(String xml) {
- return ((MxPacs00800202) MxReadImpl.parse(MxPacs00800202 .class, xml, _classes));
+ return ((MxPacs00800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800202 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800202) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800202 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800203.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800203.java
index 71be664c5..4ceaf743c 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800203.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800203.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800203 parse(String xml) {
- return ((MxPacs00800203) MxReadImpl.parse(MxPacs00800203 .class, xml, _classes));
+ return ((MxPacs00800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800203 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800203) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800203 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800302.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800302.java
index 500dc7900..6784f7f74 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800302.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800302.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800302 parse(String xml) {
- return ((MxPacs00800302) MxReadImpl.parse(MxPacs00800302 .class, xml, _classes));
+ return ((MxPacs00800302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800302 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800302) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800302 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800303.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800303.java
index 188e67d14..d82596d70 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800303.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00800303.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00800303 parse(String xml) {
- return ((MxPacs00800303) MxReadImpl.parse(MxPacs00800303 .class, xml, _classes));
+ return ((MxPacs00800303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00800303 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00800303) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00800303 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900101.java
index ed30e6f8c..132b3ac07 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900101 parse(String xml) {
- return ((MxPacs00900101) MxReadImpl.parse(MxPacs00900101 .class, xml, _classes));
+ return ((MxPacs00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900102.java
index cfd601f05..db870c295 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900102 parse(String xml) {
- return ((MxPacs00900102) MxReadImpl.parse(MxPacs00900102 .class, xml, _classes));
+ return ((MxPacs00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900103.java
index 308c5e9f7..6e039d748 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900103 parse(String xml) {
- return ((MxPacs00900103) MxReadImpl.parse(MxPacs00900103 .class, xml, _classes));
+ return ((MxPacs00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900104.java
index dcb1ba558..7a49ea0e9 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900104 parse(String xml) {
- return ((MxPacs00900104) MxReadImpl.parse(MxPacs00900104 .class, xml, _classes));
+ return ((MxPacs00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900105.java
index 99149a565..a5931f679 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900105 parse(String xml) {
- return ((MxPacs00900105) MxReadImpl.parse(MxPacs00900105 .class, xml, _classes));
+ return ((MxPacs00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900106.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900106.java
index be0e1deac..9a2b802e2 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900106.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900106.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900106 parse(String xml) {
- return ((MxPacs00900106) MxReadImpl.parse(MxPacs00900106 .class, xml, _classes));
+ return ((MxPacs00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900106 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900106) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900106 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900107.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900107.java
index 76e135270..856d65f41 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900107.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900107.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900107 parse(String xml) {
- return ((MxPacs00900107) MxReadImpl.parse(MxPacs00900107 .class, xml, _classes));
+ return ((MxPacs00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900107 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900107) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900107 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900108.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900108.java
index ed7cab5a4..6e71fa00b 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900108.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900108.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900108 parse(String xml) {
- return ((MxPacs00900108) MxReadImpl.parse(MxPacs00900108 .class, xml, _classes));
+ return ((MxPacs00900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900108 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900108) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900108 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900109.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900109.java
index 2d93c97db..8b6f12649 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900109.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900109.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900109 parse(String xml) {
- return ((MxPacs00900109) MxReadImpl.parse(MxPacs00900109 .class, xml, _classes));
+ return ((MxPacs00900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900109 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900109) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900109 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900110.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900110.java
index d9ec4d49c..04a89cd82 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900110.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs00900110.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs00900110 parse(String xml) {
- return ((MxPacs00900110) MxReadImpl.parse(MxPacs00900110 .class, xml, _classes));
+ return ((MxPacs00900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs00900110 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs00900110) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs00900110 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000101.java
index c73264f02..0b43444c8 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs01000101 parse(String xml) {
- return ((MxPacs01000101) MxReadImpl.parse(MxPacs01000101 .class, xml, _classes));
+ return ((MxPacs01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs01000101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs01000101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000102.java
index ce8b5030b..dfca2c326 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs01000102 parse(String xml) {
- return ((MxPacs01000102) MxReadImpl.parse(MxPacs01000102 .class, xml, _classes));
+ return ((MxPacs01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs01000102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs01000102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000103.java
index 26cc82036..c9983cbf6 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs01000103 parse(String xml) {
- return ((MxPacs01000103) MxReadImpl.parse(MxPacs01000103 .class, xml, _classes));
+ return ((MxPacs01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs01000103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs01000103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000104.java
index e743d35bf..1335b3dc5 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs01000104 parse(String xml) {
- return ((MxPacs01000104) MxReadImpl.parse(MxPacs01000104 .class, xml, _classes));
+ return ((MxPacs01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs01000104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs01000104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000105.java
index 8751ed255..fe7a0d1b4 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs01000105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs01000105 parse(String xml) {
- return ((MxPacs01000105) MxReadImpl.parse(MxPacs01000105 .class, xml, _classes));
+ return ((MxPacs01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs01000105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs01000105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs01000105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800101.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800101.java
index 53c9c61d1..4bdf2378d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800101.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800101.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs02800101 parse(String xml) {
- return ((MxPacs02800101) MxReadImpl.parse(MxPacs02800101 .class, xml, _classes));
+ return ((MxPacs02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs02800101 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs02800101) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800101 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800102.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800102.java
index 63cad6f3c..227ddc555 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800102.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800102.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs02800102 parse(String xml) {
- return ((MxPacs02800102) MxReadImpl.parse(MxPacs02800102 .class, xml, _classes));
+ return ((MxPacs02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs02800102 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs02800102) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800102 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800103.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800103.java
index b21e51506..effe023bd 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800103.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800103.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs02800103 parse(String xml) {
- return ((MxPacs02800103) MxReadImpl.parse(MxPacs02800103 .class, xml, _classes));
+ return ((MxPacs02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs02800103 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs02800103) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800103 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800104.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800104.java
index 59e8a18ff..6968c6a2e 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800104.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800104.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs02800104 parse(String xml) {
- return ((MxPacs02800104) MxReadImpl.parse(MxPacs02800104 .class, xml, _classes));
+ return ((MxPacs02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs02800104 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs02800104) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800104 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800105.java b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800105.java
index 94597d57d..fb936903d 100644
--- a/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800105.java
+++ b/model-pacs-mx/src/generated/java/com/prowidesoftware/swift/model/mx/MxPacs02800105.java
@@ -11,7 +11,7 @@
import javax.xml.bind.annotation.XmlType;
import com.prowidesoftware.swift.model.MxSwiftMessage;
import com.prowidesoftware.swift.model.mx.MxRead;
-import com.prowidesoftware.swift.model.mx.MxReadImpl;
+import com.prowidesoftware.swift.model.mx.MxReadConfiguration;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -124,11 +124,20 @@ public int getVersion() {
}
/**
- * Creates the MX object parsing the raw content from the parameter XML
+ * Creates the MX object parsing the raw content from the parameter XML, using default unmarshalling options
*
*/
public static MxPacs02800105 parse(String xml) {
- return ((MxPacs02800105) MxReadImpl.parse(MxPacs02800105 .class, xml, _classes));
+ return ((MxPacs02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams()));
+ }
+
+ /**
+ * Creates the MX object parsing the raw content from the parameter XML, using the provided unmarshalling options
+ * @since 9.2.6
+ *
+ */
+ public static MxPacs02800105 parse(String xml, MxReadConfiguration conf) {
+ return ((MxPacs02800105) com.prowidesoftware.swift.model.mx.MxReadImpl.parse(MxPacs02800105 .class, xml, _classes, new com.prowidesoftware.swift.model.mx.MxReadParams(conf)));
}
/**
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails5.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails5.java
index f1e95cea8..386a8cd87 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails5.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/AmendmentInformationDetails5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class AmendmentInformationDetails5 {
protected FinancialInstitution3 orgnlDbtrAgt;
@XmlElement(name = "OrgnlDbtrAgtAcct")
protected CashAccount7 orgnlDbtrAgtAcct;
- @XmlElement(name = "OrgnlFnlColltnDt")
+ @XmlElement(name = "OrgnlFnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlFnlColltnDt;
@XmlElement(name = "OrgnlFrqcy")
@@ -262,7 +265,7 @@ public AmendmentInformationDetails5 setOrgnlDbtrAgtAcct(CashAccount7 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
@@ -274,7 +277,7 @@ public XMLGregorianCalendar getOrgnlFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public AmendmentInformationDetails5 setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction17.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction17.java
index 769b2c2cc..c1d3459b3 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction17.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction17.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class CreditTransferTransaction17 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -205,7 +208,7 @@ public CreditTransferTransaction17 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction17 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction19.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction19.java
index 86741b825..127451fde 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction19.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction19.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -75,7 +78,8 @@ public class CreditTransferTransaction19 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -85,10 +89,12 @@ public class CreditTransferTransaction19 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -239,7 +245,7 @@ public CreditTransferTransaction19 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -251,7 +257,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction19 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +345,7 @@ public CreditTransferTransaction19 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -351,7 +357,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction19 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -364,7 +370,7 @@ public CreditTransferTransaction19 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -376,7 +382,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction19 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction2.java
index 59991227a..3a3e86ab0 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction2.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -73,7 +76,8 @@ public class CreditTransferTransaction2 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -83,10 +87,12 @@ public class CreditTransferTransaction2 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -233,7 +239,7 @@ public CreditTransferTransaction2 setIntrBkSttlmAmt(ActiveCurrencyAndAmount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -245,7 +251,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -333,7 +339,7 @@ public CreditTransferTransaction2 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -345,7 +351,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction2 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -358,7 +364,7 @@ public CreditTransferTransaction2 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -370,7 +376,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction2 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction25.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction25.java
index 2777683a1..7fb50ed31 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction25.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction25.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -75,7 +78,8 @@ public class CreditTransferTransaction25 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -85,10 +89,12 @@ public class CreditTransferTransaction25 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -239,7 +245,7 @@ public CreditTransferTransaction25 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -251,7 +257,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction25 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +345,7 @@ public CreditTransferTransaction25 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -351,7 +357,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction25 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -364,7 +370,7 @@ public CreditTransferTransaction25 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -376,7 +382,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction25 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction30.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction30.java
index 76891a519..62610b8d7 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction30.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction30.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -79,7 +82,8 @@ public class CreditTransferTransaction30 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -89,10 +93,12 @@ public class CreditTransferTransaction30 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -251,7 +257,7 @@ public CreditTransferTransaction30 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -263,7 +269,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction30 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -351,7 +357,7 @@ public CreditTransferTransaction30 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -363,7 +369,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction30 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -376,7 +382,7 @@ public CreditTransferTransaction30 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -388,7 +394,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction30 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction31.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction31.java
index 304715328..8956c7d9b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction31.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction31.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class CreditTransferTransaction31 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -217,7 +220,7 @@ public CreditTransferTransaction31 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -229,7 +232,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction31 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction36.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction36.java
index dfcc53904..2b9ed2836 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction36.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction36.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class CreditTransferTransaction36 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -220,7 +223,7 @@ public CreditTransferTransaction36 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -232,7 +235,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction36 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction38.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction38.java
index f0844702e..d7ad06a24 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction38.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction38.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class CreditTransferTransaction38 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -199,7 +202,7 @@ public CreditTransferTransaction38 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -211,7 +214,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction38 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction39.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction39.java
index c78bd5f0d..c8ec6f081 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction39.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction39.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -79,7 +82,8 @@ public class CreditTransferTransaction39 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -89,10 +93,12 @@ public class CreditTransferTransaction39 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -251,7 +257,7 @@ public CreditTransferTransaction39 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -263,7 +269,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction39 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -351,7 +357,7 @@ public CreditTransferTransaction39 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -363,7 +369,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction39 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -376,7 +382,7 @@ public CreditTransferTransaction39 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -388,7 +394,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction39 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction4.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction4.java
index 7a071ed73..6cbceea09 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction4.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction4.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class CreditTransferTransaction4 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -202,7 +205,7 @@ public CreditTransferTransaction4 setIntrBkSttlmAmt(ActiveCurrencyAndAmount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction4 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction43.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction43.java
index 8c577dfff..0c6d3d5af 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction43.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction43.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,7 +83,8 @@ public class CreditTransferTransaction43 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -90,10 +94,12 @@ public class CreditTransferTransaction43 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -254,7 +260,7 @@ public CreditTransferTransaction43 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -266,7 +272,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction43 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -354,7 +360,7 @@ public CreditTransferTransaction43 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -366,7 +372,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction43 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -379,7 +385,7 @@ public CreditTransferTransaction43 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -391,7 +397,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction43 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction44.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction44.java
index cacbb9724..43a34b913 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction44.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction44.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class CreditTransferTransaction44 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -220,7 +223,7 @@ public CreditTransferTransaction44 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -232,7 +235,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction44 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction47.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction47.java
index d3a7df585..982470c14 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction47.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction47.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class CreditTransferTransaction47 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -199,7 +202,7 @@ public CreditTransferTransaction47 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -211,7 +214,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction47 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction50.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction50.java
index 79c6eaf7f..a15498d1a 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction50.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction50.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -80,7 +83,8 @@ public class CreditTransferTransaction50 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -90,10 +94,12 @@ public class CreditTransferTransaction50 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -254,7 +260,7 @@ public CreditTransferTransaction50 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -266,7 +272,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction50 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -354,7 +360,7 @@ public CreditTransferTransaction50 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -366,7 +372,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction50 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -379,7 +385,7 @@ public CreditTransferTransaction50 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -391,7 +397,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction50 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction53.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction53.java
index 06ed9fa7e..17bc3624d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction53.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction53.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -56,7 +58,8 @@ public class CreditTransferTransaction53 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -199,7 +202,7 @@ public CreditTransferTransaction53 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -211,7 +214,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction53 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction56.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction56.java
index 7cc57bb0b..809e7e577 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction56.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction56.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class CreditTransferTransaction56 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -220,7 +223,7 @@ public CreditTransferTransaction56 setIntrBkSttlmAmt(ActiveCurrencyAndAmount val
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -232,7 +235,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction56 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction7.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction7.java
index 77ddd8c51..1eff2e338 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction7.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction7.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -74,7 +77,8 @@ public class CreditTransferTransaction7 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -84,10 +88,12 @@ public class CreditTransferTransaction7 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -236,7 +242,7 @@ public CreditTransferTransaction7 setIntrBkSttlmAmt(ActiveCurrencyAndAmount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -248,7 +254,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction7 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -336,7 +342,7 @@ public CreditTransferTransaction7 setSttlmTmReq(SettlementTimeRequest2 value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -348,7 +354,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction7 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -361,7 +367,7 @@ public CreditTransferTransaction7 setAccptncDtTm(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -373,7 +379,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction7 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction8.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction8.java
index f12a80a4e..09002f83c 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction8.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransaction8.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,7 +66,8 @@ public class CreditTransferTransaction8 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -205,7 +208,7 @@ public CreditTransferTransaction8 setIntrBkSttlmAmt(ActiveCurrencyAndAmount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -217,7 +220,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransaction8 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation11.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation11.java
index 8892c8088..78ef4a285 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation11.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation11.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -73,7 +76,8 @@ public class CreditTransferTransactionInformation11 {
protected PaymentTypeInformation21 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -83,10 +87,12 @@ public class CreditTransferTransactionInformation11 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest2 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -233,7 +239,7 @@ public CreditTransferTransactionInformation11 setIntrBkSttlmAmt(ActiveCurrencyAn
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -245,7 +251,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation11 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -333,7 +339,7 @@ public CreditTransferTransactionInformation11 setSttlmTmReq(SettlementTimeReques
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -345,7 +351,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation11 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -358,7 +364,7 @@ public CreditTransferTransactionInformation11 setAccptncDtTm(XMLGregorianCalenda
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -370,7 +376,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation11 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation13.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation13.java
index 213131ce6..35bf3a5de 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation13.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation13.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class CreditTransferTransactionInformation13 {
protected PaymentTypeInformation23 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -202,7 +205,7 @@ public CreditTransferTransactionInformation13 setIntrBkSttlmAmt(ActiveCurrencyAn
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -214,7 +217,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation13 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation2.java
index c6029b5f3..d74ab0eaa 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation2.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -72,17 +75,20 @@ public class CreditTransferTransactionInformation2 {
protected PaymentTypeInformation3 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected CurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest1 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -229,7 +235,7 @@ public CreditTransferTransactionInformation2 setIntrBkSttlmAmt(CurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -241,7 +247,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -304,7 +310,7 @@ public CreditTransferTransactionInformation2 setSttlmTmReq(SettlementTimeRequest
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -316,7 +322,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation2 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -329,7 +335,7 @@ public CreditTransferTransactionInformation2 setAccptncDtTm(XMLGregorianCalendar
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -341,7 +347,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation2 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation3.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation3.java
index 98780e98e..e8ef482fb 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation3.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation3.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class CreditTransferTransactionInformation3 {
protected PaymentTypeInformation5 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected CurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
@@ -195,7 +198,7 @@ public CreditTransferTransactionInformation3 setIntrBkSttlmAmt(CurrencyAndAmount
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -207,7 +210,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation7.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation7.java
index 22f4fcea9..a3ef4753d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation7.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation7.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -72,17 +75,20 @@ public class CreditTransferTransactionInformation7 {
protected PaymentTypeInformation10 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected EuroMax9Amount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmTmIndctn")
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest1 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -229,7 +235,7 @@ public CreditTransferTransactionInformation7 setIntrBkSttlmAmt(EuroMax9Amount va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -241,7 +247,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation7 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -304,7 +310,7 @@ public CreditTransferTransactionInformation7 setSttlmTmReq(SettlementTimeRequest
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -316,7 +322,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation7 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -329,7 +335,7 @@ public CreditTransferTransactionInformation7 setAccptncDtTm(XMLGregorianCalendar
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -341,7 +347,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation7 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation9.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation9.java
index 6d82cc6c0..8fb12989d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation9.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/CreditTransferTransactionInformation9.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -75,10 +78,12 @@ public class CreditTransferTransactionInformation9 {
protected SettlementDateTimeIndication1 sttlmTmIndctn;
@XmlElement(name = "SttlmTmReq")
protected SettlementTimeRequest1 sttlmTmReq;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
- @XmlElement(name = "PoolgAdjstmntDt")
+ @XmlElement(name = "PoolgAdjstmntDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar poolgAdjstmntDt;
@XmlElement(name = "InstdAmt")
@@ -275,7 +280,7 @@ public CreditTransferTransactionInformation9 setSttlmTmReq(SettlementTimeRequest
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation9 setAccptncDtTm(XMLGregorianCalendar value) {
@@ -300,7 +305,7 @@ public CreditTransferTransactionInformation9 setAccptncDtTm(XMLGregorianCalendar
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPoolgAdjstmntDt() {
@@ -312,7 +317,7 @@ public XMLGregorianCalendar getPoolgAdjstmntDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public CreditTransferTransactionInformation9 setPoolgAdjstmntDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction5.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction5.java
index f4e993368..7414892e5 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction5.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransaction5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class DirectDebitTransaction5 {
protected PartyIdentification18 cdtrSchmeId;
@XmlElement(name = "PreNtfctnId")
protected String preNtfctnId;
- @XmlElement(name = "PreNtfctnDt")
+ @XmlElement(name = "PreNtfctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar preNtfctnDt;
@@ -118,7 +121,7 @@ public DirectDebitTransaction5 setPreNtfctnId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getPreNtfctnDt() {
@@ -130,7 +133,7 @@ public XMLGregorianCalendar getPreNtfctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransaction5 setPreNtfctnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation10.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation10.java
index 6261029ba..4428658e8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation10.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation10.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class DirectDebitTransactionInformation10 {
protected PaymentTypeInformation22 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstdAmt")
@@ -78,7 +81,8 @@ public class DirectDebitTransactionInformation10 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -210,7 +214,7 @@ public DirectDebitTransactionInformation10 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -222,7 +226,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation10 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +343,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -351,7 +355,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation10 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation12.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation12.java
index 12ca5584d..fcfeb08e9 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation12.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation12.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class DirectDebitTransactionInformation12 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstdAmt")
@@ -78,7 +81,8 @@ public class DirectDebitTransactionInformation12 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -210,7 +214,7 @@ public DirectDebitTransactionInformation12 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -222,7 +226,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation12 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +343,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -351,7 +355,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation12 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation14.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation14.java
index d39b5a33c..525d64817 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation14.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation14.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class DirectDebitTransactionInformation14 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstdAmt")
@@ -79,7 +82,8 @@ public class DirectDebitTransactionInformation14 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -213,7 +217,7 @@ public DirectDebitTransactionInformation14 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -225,7 +229,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation14 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -342,7 +346,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -354,7 +358,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation14 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation17.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation17.java
index 236347d8f..90ff7673f 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation17.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class DirectDebitTransactionInformation17 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -83,7 +86,8 @@ public class DirectDebitTransactionInformation17 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -217,7 +221,7 @@ public DirectDebitTransactionInformation17 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -229,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation17 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -371,7 +375,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -383,7 +387,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation17 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation2.java
index 860efcc44..677991297 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class DirectDebitTransactionInformation2 {
protected PaymentTypeInformation4 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected CurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstdAmt")
@@ -78,7 +81,8 @@ public class DirectDebitTransactionInformation2 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -210,7 +214,7 @@ public DirectDebitTransactionInformation2 setIntrBkSttlmAmt(CurrencyAndAmount va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -222,7 +226,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +343,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -351,7 +355,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation2 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation20.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation20.java
index 3bcd755f4..81d03b4ab 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation20.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation20.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class DirectDebitTransactionInformation20 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -83,7 +86,8 @@ public class DirectDebitTransactionInformation20 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -217,7 +221,7 @@ public DirectDebitTransactionInformation20 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -229,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation20 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -371,7 +375,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -383,7 +387,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation20 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation21.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation21.java
index ea62e1b05..d1d82add4 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation21.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation21.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,7 +70,8 @@ public class DirectDebitTransactionInformation21 {
protected PaymentTypeInformation25 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -83,7 +86,8 @@ public class DirectDebitTransactionInformation21 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -217,7 +221,7 @@ public DirectDebitTransactionInformation21 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -229,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation21 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -371,7 +375,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -383,7 +387,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation21 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation24.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation24.java
index 28f8f17d8..26a9fb1cb 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation24.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation24.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class DirectDebitTransactionInformation24 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -86,7 +89,8 @@ public class DirectDebitTransactionInformation24 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -220,7 +224,7 @@ public DirectDebitTransactionInformation24 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -232,7 +236,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation24 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -399,7 +403,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -411,7 +415,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation24 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation25.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation25.java
index c3055f8bc..b935596e1 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation25.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation25.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class DirectDebitTransactionInformation25 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -152,7 +155,7 @@ public DirectDebitTransactionInformation25 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation25 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation26.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation26.java
index 41a51ae41..4132bf785 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation26.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation26.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class DirectDebitTransactionInformation26 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -152,7 +155,7 @@ public DirectDebitTransactionInformation26 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation26 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation27.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation27.java
index 04792a891..8737246fa 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation27.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation27.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,7 +47,8 @@ public class DirectDebitTransactionInformation27 {
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -152,7 +155,7 @@ public DirectDebitTransactionInformation27 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -164,7 +167,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation27 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation29.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation29.java
index 866ab44b4..f1ca2bc1e 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation29.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation29.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -69,7 +71,8 @@ public class DirectDebitTransactionInformation29 {
protected PaymentTypeInformation27 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -86,7 +89,8 @@ public class DirectDebitTransactionInformation29 {
protected ChargeBearerType1Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx")
@@ -220,7 +224,7 @@ public DirectDebitTransactionInformation29 setIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -232,7 +236,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation29 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -399,7 +403,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -411,7 +415,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation29 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation5.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation5.java
index ec1342b98..85d5fd1b1 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation5.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,7 +51,8 @@ public class DirectDebitTransactionInformation5 {
@XmlElement(name = "ChrgBr", required = true)
@XmlSchemaType(name = "string")
protected ChargeBearerType2Code chrgBr;
- @XmlElement(name = "ReqdColltnDt", required = true)
+ @XmlElement(name = "ReqdColltnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx", required = true)
@@ -180,7 +183,7 @@ public DirectDebitTransactionInformation5 setChrgBr(ChargeBearerType2Code value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -192,7 +195,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation5 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation6.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation6.java
index 6090e07ab..5b234e49b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation6.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation6.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -66,7 +68,8 @@ public class DirectDebitTransactionInformation6 {
protected PaymentTypeInformation11 pmtTpInf;
@XmlElement(name = "IntrBkSttlmAmt", required = true)
protected EuroMax9Amount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "InstdAmt")
@@ -78,7 +81,8 @@ public class DirectDebitTransactionInformation6 {
protected ChargeBearerType2Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt", required = true)
+ @XmlElement(name = "ReqdColltnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx", required = true)
@@ -210,7 +214,7 @@ public DirectDebitTransactionInformation6 setIntrBkSttlmAmt(EuroMax9Amount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -222,7 +226,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation6 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -339,7 +343,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -351,7 +355,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation6 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation7.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation7.java
index 55b46eac2..7fa96dc6e 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation7.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,7 +53,8 @@ public class DirectDebitTransactionInformation7 {
@XmlElement(name = "ChrgBr", required = true)
@XmlSchemaType(name = "string")
protected ChargeBearerType2Code chrgBr;
- @XmlElement(name = "ReqdColltnDt", required = true)
+ @XmlElement(name = "ReqdColltnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx", required = true)
@@ -186,7 +189,7 @@ public DirectDebitTransactionInformation7 setChrgBr(ChargeBearerType2Code value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -198,7 +201,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation7 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation8.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation8.java
index b5338ee28..26705fc9f 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation8.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/DirectDebitTransactionInformation8.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -74,7 +76,8 @@ public class DirectDebitTransactionInformation8 {
protected ChargeBearerType2Code chrgBr;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "ReqdColltnDt", required = true)
+ @XmlElement(name = "ReqdColltnDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "DrctDbtTx", required = true)
@@ -310,7 +313,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -322,7 +325,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public DirectDebitTransactionInformation8 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader101.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader101.java
index 13b7d1d75..d1c387782 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader101.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader101.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class GroupHeader101 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstgAgt")
@@ -71,7 +74,7 @@ public GroupHeader101 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader101 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader12.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader12.java
index e3e4203c8..5eb569db8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader12.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class GroupHeader12 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstgAgt")
@@ -68,7 +71,7 @@ public GroupHeader12 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader12 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader15.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader15.java
index 6f39f253a..f39315913 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader15.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader15.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader15 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader15 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader15 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader15 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader15 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader15 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader16.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader16.java
index 797003548..59c75eadc 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader16.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader16.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader16 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader16 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader16 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader16 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader16 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader16 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader17.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader17.java
index c862d2871..1c607a53e 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader17.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader17.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader17 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader17 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader17 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader17 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader17 setTtlRtrdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader17 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader18.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader18.java
index 7cf3203b4..2499dc7aa 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader18.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader18.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader18 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader18 {
protected boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader18 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader18 setCreDtTm(XMLGregorianCalendar value) {
@@ -267,7 +272,7 @@ public GroupHeader18 setTtlRvsdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -279,7 +284,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader18 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader19.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader19.java
index a84319874..5e2cf49f5 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader19.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader19.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class GroupHeader19 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader19 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader19 setCreDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public GroupHeader19 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader19 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader2.java
index ba9db5680..c5248586b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader2.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader2 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected CurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader2 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader2 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader2 setTtlIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader20.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader20.java
index fbe37f337..2a6b28dae 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader20.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader20.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class GroupHeader20 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader20 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader20 setCreDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public GroupHeader20 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader20 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader21.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader21.java
index 77f457cb1..4aa763b16 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader21.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader21.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,14 +37,16 @@ public class GroupHeader21 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -81,7 +86,7 @@ public GroupHeader21 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -93,7 +98,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader21 setCreDtTm(XMLGregorianCalendar value) {
@@ -156,7 +161,7 @@ public GroupHeader21 setTtlRtrdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -168,7 +173,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader21 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader22.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader22.java
index d525b1154..3f82122d3 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader22.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader22.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +38,8 @@ public class GroupHeader22 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
@@ -44,7 +48,8 @@ public class GroupHeader22 {
protected boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader22 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader22 setCreDtTm(XMLGregorianCalendar value) {
@@ -176,7 +181,7 @@ public GroupHeader22 setTtlRvsdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -188,7 +193,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader22 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader24.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader24.java
index 7e754c77c..cb5a35ff3 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader24.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader24.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class GroupHeader24 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader24 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader24 setCreDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public GroupHeader24 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader24 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader25.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader25.java
index b1e3fab05..b57a3d860 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader25.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader25.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,14 +38,16 @@ public class GroupHeader25 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader25 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader25 setCreDtTm(XMLGregorianCalendar value) {
@@ -159,7 +164,7 @@ public GroupHeader25 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -171,7 +176,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader25 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader26.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader26.java
index 3a4dbe9e5..841bd89d4 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader26.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader26.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader26 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader26 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader26 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader26 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader26 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader26 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader27.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader27.java
index 9fc0206ca..9e5ff77c0 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader27.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader27.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader27 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader27 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader27 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader27 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader27 setTtlRtrdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader27 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader28.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader28.java
index 2da450919..5bfc9e723 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader28.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader28.java
@@ -6,7 +6,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -35,7 +38,8 @@ public class GroupHeader28 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
@@ -44,7 +48,8 @@ public class GroupHeader28 {
protected boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -84,7 +89,7 @@ public GroupHeader28 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -96,7 +101,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader28 setCreDtTm(XMLGregorianCalendar value) {
@@ -176,7 +181,7 @@ public GroupHeader28 setTtlRvsdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -188,7 +193,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader28 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader29.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader29.java
index 6d2d2ace3..793a9afa7 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader29.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader29.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader29 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader29 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader29 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader29 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader29 setTtlIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader29 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader3.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader3.java
index c1a0a6adb..bedaeb554 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader3.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader3.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader3 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader3 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected CurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader3 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader3 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader3 setTtlIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader3 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader30.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader30.java
index 0f3945661..d64b26951 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader30.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader30.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader30 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader30 {
protected boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt", required = true)
protected EuroMax15Amount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt", required = true)
+ @XmlElement(name = "IntrBkSttlmDt", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader30 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader30 setCreDtTm(XMLGregorianCalendar value) {
@@ -267,7 +272,7 @@ public GroupHeader30 setTtlRvsdIntrBkSttlmAmt(EuroMax15Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -279,7 +284,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader30 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader33.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader33.java
index 39b2cd6be..0666e8a27 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader33.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader33.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader33 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader33 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader33 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader33 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader33 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader33 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader34.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader34.java
index d34d9cae8..d46ab00a3 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader34.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader34.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader34 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader34 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader34 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader34 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader34 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader34 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader35.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader35.java
index 8c989f28c..24dc1c5f0 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader35.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader35.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader35 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader35 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader35 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader35 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader35 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader35 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader37.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader37.java
index 22d8faa31..14c3c9a14 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader37.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader37.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class GroupHeader37 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstgAgt")
@@ -68,7 +71,7 @@ public GroupHeader37 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader37 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader38.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader38.java
index 6dc836359..e20a4711a 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader38.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader38.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader38 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader38 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader38 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader38 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader38 setTtlRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader38 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader4.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader4.java
index 2be568bfa..a9b1ccae6 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader4.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader4.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader4 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader4 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected CurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader4 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader4 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader4 setTtlIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader4 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader41.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader41.java
index 12524a90f..30f27b890 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader41.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader41.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader41 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader41 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader41 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader41 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader41 setTtlRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader41 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader49.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader49.java
index c01eca5df..9051168d6 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader49.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader49.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader49 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader49 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader49 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader49 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader49 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader49 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader51.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader51.java
index 9777cc887..92f120ab6 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader51.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader51.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader51 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader51 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader51 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader51 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader51 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader51 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader53.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader53.java
index eafc2ff6e..f88a808b6 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader53.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader53.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class GroupHeader53 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstgAgt")
@@ -68,7 +71,7 @@ public GroupHeader53 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader53 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader54.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader54.java
index dd9077daf..b79188578 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader54.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader54.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader54 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader54 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader54 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader54 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader54 setTtlRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader54 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader57.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader57.java
index b95067a4d..99a50c52b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader57.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader57.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader57 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader57 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader57 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader57 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader57 setTtlRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader57 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader6.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader6.java
index 12f037af9..32a003e03 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader6.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader6.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader6 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader6 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected CurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader6 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader6 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader6 setTtlRtrdIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader6 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader71.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader71.java
index a28edb510..ec50be1c7 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader71.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader71.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader71 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader71 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader71 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader71 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader71 setTtlRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader71 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader72.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader72.java
index b14361101..b819d4bc8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader72.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader72.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader72 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader72 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader72 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader72 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader72 setTtlRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader72 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader89.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader89.java
index d0535fd7d..24ce79313 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader89.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader89.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader89 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader89 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader89 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader89 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader89 setTtlRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader89 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader9.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader9.java
index e80f40d29..dd202a49f 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader9.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader9.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader9 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader9 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected CurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader9 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader9 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader9 setTtlRvsdIntrBkSttlmAmt(CurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader9 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader90.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader90.java
index d1bed4c8e..e324ad59b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader90.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader90.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader90 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader90 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader90 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader90 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader90 setTtlRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader90 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader91.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader91.java
index 4fd5eb1a0..57f86a363 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader91.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader91.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -30,7 +32,8 @@ public class GroupHeader91 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "InstgAgt")
@@ -68,7 +71,7 @@ public GroupHeader91 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -80,7 +83,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader91 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader92.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader92.java
index 723775ad3..e1c5bf5ec 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader92.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader92.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -33,7 +35,8 @@ public class GroupHeader92 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
@@ -75,7 +78,7 @@ public GroupHeader92 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -87,7 +90,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader92 setCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader93.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader93.java
index 19031c9a1..7fc8de0ab 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader93.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader93.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader93 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader93 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader93 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader93 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader93 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader93 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader94.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader94.java
index fb276675a..ff0af8710 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader94.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader94.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader94 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader94 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader94 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader94 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader94 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader94 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader96.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader96.java
index 1ca576428..dd6f8d66a 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader96.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader96.java
@@ -7,7 +7,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,7 +41,8 @@ public class GroupHeader96 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "BtchBookg")
@@ -49,7 +53,8 @@ public class GroupHeader96 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -91,7 +96,7 @@ public GroupHeader96 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -103,7 +108,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader96 setCreDtTm(XMLGregorianCalendar value) {
@@ -216,7 +221,7 @@ public GroupHeader96 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -228,7 +233,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader96 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader97.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader97.java
index 870dd0afa..8b8e87f95 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader97.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader97.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader97 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -56,7 +60,8 @@ public class GroupHeader97 {
protected Boolean grpRvsl;
@XmlElement(name = "TtlRvsdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader97 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader97 setCreDtTm(XMLGregorianCalendar value) {
@@ -275,7 +280,7 @@ public GroupHeader97 setTtlRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -287,7 +292,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader97 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader98.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader98.java
index 7041b8cd4..6477285c8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader98.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader98.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,7 +44,8 @@ public class GroupHeader98 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -54,7 +58,8 @@ public class GroupHeader98 {
protected BigDecimal ctrlSum;
@XmlElement(name = "TtlIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -96,7 +101,7 @@ public GroupHeader98 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -108,7 +113,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader98 setCreDtTm(XMLGregorianCalendar value) {
@@ -250,7 +255,7 @@ public GroupHeader98 setTtlIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -262,7 +267,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader98 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader99.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader99.java
index dc8b3c25b..6cbd4f779 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader99.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/GroupHeader99.java
@@ -9,7 +9,10 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -42,7 +45,8 @@ public class GroupHeader99 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
- @XmlElement(name = "CreDtTm", required = true)
+ @XmlElement(name = "CreDtTm", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "Authstn")
@@ -57,7 +61,8 @@ public class GroupHeader99 {
protected Boolean grpRtr;
@XmlElement(name = "TtlRtrdIntrBkSttlmAmt")
protected ActiveCurrencyAndAmount ttlRtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmInf", required = true)
@@ -99,7 +104,7 @@ public GroupHeader99 setMsgId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getCreDtTm() {
@@ -111,7 +116,7 @@ public XMLGregorianCalendar getCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader99 setCreDtTm(XMLGregorianCalendar value) {
@@ -278,7 +283,7 @@ public GroupHeader99 setTtlRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -290,7 +295,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public GroupHeader99 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation4.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation4.java
index c10db76ee..45c97d08f 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation4.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation4.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -31,7 +33,8 @@ public class MandateRelatedInformation4 {
@XmlElement(name = "MndtId", required = true)
protected String mndtId;
- @XmlElement(name = "DtOfSgntr", required = true)
+ @XmlElement(name = "DtOfSgntr", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -71,7 +74,7 @@ public MandateRelatedInformation4 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -83,7 +86,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation4 setDtOfSgntr(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation5.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation5.java
index d97dc2b1f..fc5b39e28 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation5.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/MandateRelatedInformation5.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class MandateRelatedInformation5 {
@XmlElement(name = "MndtId", required = true)
protected String mndtId;
- @XmlElement(name = "DtOfSgntr", required = true)
+ @XmlElement(name = "DtOfSgntr", required = true, type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar dtOfSgntr;
@XmlElement(name = "AmdmntInd")
@@ -43,10 +46,12 @@ public class MandateRelatedInformation5 {
protected AmendmentInformationDetails5 amdmntInfDtls;
@XmlElement(name = "ElctrncSgntr")
protected String elctrncSgntr;
- @XmlElement(name = "FrstColltnDt")
+ @XmlElement(name = "FrstColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar frstColltnDt;
- @XmlElement(name = "FnlColltnDt")
+ @XmlElement(name = "FnlColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar fnlColltnDt;
@XmlElement(name = "Frqcy")
@@ -83,7 +88,7 @@ public MandateRelatedInformation5 setMndtId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getDtOfSgntr() {
@@ -95,7 +100,7 @@ public XMLGregorianCalendar getDtOfSgntr() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation5 setDtOfSgntr(XMLGregorianCalendar value) {
@@ -183,7 +188,7 @@ public MandateRelatedInformation5 setElctrncSgntr(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFrstColltnDt() {
@@ -195,7 +200,7 @@ public XMLGregorianCalendar getFrstColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation5 setFrstColltnDt(XMLGregorianCalendar value) {
@@ -208,7 +213,7 @@ public MandateRelatedInformation5 setFrstColltnDt(XMLGregorianCalendar value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getFnlColltnDt() {
@@ -220,7 +225,7 @@ public XMLGregorianCalendar getFnlColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public MandateRelatedInformation5 setFnlColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader12.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader12.java
index bf1fdcc1b..a9e5f1f0b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader12.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader12.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader12 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader12 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader12 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader18.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader18.java
index 7199175d0..074f1a71a 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader18.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader18.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader18 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader18 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader18 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader2.java
index 5933f5fd0..811c790be 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupHeader2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupHeader2 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupHeader2 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupHeader2 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation11.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation11.java
index 54798f6c1..127ff3136 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation11.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation11.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation11 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation11 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation11 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation15.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation15.java
index b98b8ae07..43b2a2716 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation15.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation15.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class OriginalGroupInformation15 {
protected String ntwkFileNm;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "FileOrgtr")
@@ -140,7 +143,7 @@ public OriginalGroupInformation15 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -152,7 +155,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation15 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation16.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation16.java
index 6ea304ab3..636706d2b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation16.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation16.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation16 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RvslRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation16 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation16 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation19.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation19.java
index 98033a2ae..80eae65d3 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation19.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation19.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -43,7 +45,8 @@ public class OriginalGroupInformation19 {
protected String ntwkFileNm;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "FileOrgtr")
@@ -140,7 +143,7 @@ public OriginalGroupInformation19 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -152,7 +155,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation19 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation2.java
index cccf5becf..84fd297ea 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation2.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation2 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation2 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation2 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation21.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation21.java
index 9aa5d6130..c73304edc 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation21.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation21.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation21 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "RtrRsnInf")
@@ -95,7 +98,7 @@ public OriginalGroupInformation21 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -107,7 +110,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation21 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation27.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation27.java
index 238d29b08..b995fbddf 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation27.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalGroupInformation27.java
@@ -7,7 +7,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -34,7 +36,8 @@ public class OriginalGroupInformation27 {
protected String orgnlMsgId;
@XmlElement(name = "OrgnlMsgNmId", required = true)
protected String orgnlMsgNmId;
- @XmlElement(name = "OrgnlCreDtTm")
+ @XmlElement(name = "OrgnlCreDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar orgnlCreDtTm;
@XmlElement(name = "OrgnlNbOfTxs")
@@ -97,7 +100,7 @@ public OriginalGroupInformation27 setOrgnlMsgNmId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlCreDtTm() {
@@ -109,7 +112,7 @@ public XMLGregorianCalendar getOrgnlCreDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalGroupInformation27 setOrgnlCreDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference10.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference10.java
index 09ede5ebc..c8b1ad8de 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference10.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference10.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -39,10 +41,12 @@
})
public class OriginalTransactionReference10 {
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -77,7 +81,7 @@ public class OriginalTransactionReference10 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -89,7 +93,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference10 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -102,7 +106,7 @@ public OriginalTransactionReference10 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference10 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference11.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference11.java
index e7ac4c64a..7342c52ff 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference11.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference11.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -45,10 +47,12 @@ public class OriginalTransactionReference11 {
protected EuroMax9Amount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType2Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -133,7 +137,7 @@ public OriginalTransactionReference11 setAmt(AmountType2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -145,7 +149,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference11 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -158,7 +162,7 @@ public OriginalTransactionReference11 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -170,7 +174,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference11 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference12.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference12.java
index 9d8631b10..60e866943 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference12.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference12.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -49,13 +51,16 @@ public class OriginalTransactionReference12 {
protected EuroMax9Amount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType2Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdExctnDt")
+ @XmlElement(name = "ReqdExctnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdExctnDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -147,7 +152,7 @@ public OriginalTransactionReference12 setAmt(AmountType2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -159,7 +164,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference12 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -172,7 +177,7 @@ public OriginalTransactionReference12 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdExctnDt() {
@@ -184,7 +189,7 @@ public XMLGregorianCalendar getReqdExctnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference12 setReqdExctnDt(XMLGregorianCalendar value) {
@@ -197,7 +202,7 @@ public OriginalTransactionReference12 setReqdExctnDt(XMLGregorianCalendar value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -209,7 +214,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference12 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference32.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference32.java
index 7ebbb9deb..9fdd4f7d9 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference32.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference32.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class OriginalTransactionReference32 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -152,7 +156,7 @@ public OriginalTransactionReference32 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -164,7 +168,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference32 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -177,7 +181,7 @@ public OriginalTransactionReference32 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -189,7 +193,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference32 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference36.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference36.java
index 13bcd66fa..36db0da00 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference36.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference36.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -51,10 +53,12 @@ public class OriginalTransactionReference36 {
protected ActiveOrHistoricCurrencyAndAmount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType4Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "ReqdExctnDt")
@@ -152,7 +156,7 @@ public OriginalTransactionReference36 setAmt(AmountType4Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -164,7 +168,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference36 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -177,7 +181,7 @@ public OriginalTransactionReference36 setIntrBkSttlmDt(XMLGregorianCalendar valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -189,7 +193,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference36 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference7.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference7.java
index 9f4b5321c..abf814bae 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference7.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference7.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -38,10 +40,12 @@
})
public class OriginalTransactionReference7 {
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -74,7 +78,7 @@ public class OriginalTransactionReference7 {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -86,7 +90,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference7 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -99,7 +103,7 @@ public OriginalTransactionReference7 setIntrBkSttlmDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -111,7 +115,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference7 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference8.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference8.java
index a5deb3de3..ab6675aff 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference8.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference8.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -41,10 +43,12 @@ public class OriginalTransactionReference8 {
@XmlElement(name = "IntrBkSttlmAmt")
protected EuroMax9Amount intrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -102,7 +106,7 @@ public OriginalTransactionReference8 setIntrBkSttlmAmt(EuroMax9Amount value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -114,7 +118,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference8 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -127,7 +131,7 @@ public OriginalTransactionReference8 setIntrBkSttlmDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -139,7 +143,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference8 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference9.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference9.java
index 1c88d22e5..058e7521c 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference9.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/OriginalTransactionReference9.java
@@ -6,7 +6,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -48,10 +50,12 @@ public class OriginalTransactionReference9 {
protected EuroMax9Amount intrBkSttlmAmt;
@XmlElement(name = "Amt")
protected AmountType2Choice amt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
- @XmlElement(name = "ReqdColltnDt")
+ @XmlElement(name = "ReqdColltnDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "CdtrSchmeId")
@@ -143,7 +147,7 @@ public OriginalTransactionReference9 setAmt(AmountType2Choice value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -155,7 +159,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference9 setIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -168,7 +172,7 @@ public OriginalTransactionReference9 setIntrBkSttlmDt(XMLGregorianCalendar value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
@@ -180,7 +184,7 @@ public XMLGregorianCalendar getReqdColltnDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public OriginalTransactionReference9 setReqdColltnDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction110.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction110.java
index 475953db1..e7ec57344 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction110.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction110.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class PaymentTransaction110 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "FctvIntrBkSttlmDt")
@@ -317,7 +320,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -329,7 +332,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction110 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction111.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction111.java
index 7a4cf18d2..7a6716afb 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction111.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction111.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction111 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -327,7 +330,7 @@ public PaymentTransaction111 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -339,7 +342,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction111 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction112.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction112.java
index c87222050..2e9190e83 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction112.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction112.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,12 +70,14 @@ public class PaymentTransaction112 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -312,7 +316,7 @@ public PaymentTransaction112 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -324,7 +328,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction112 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -362,7 +366,7 @@ public PaymentTransaction112 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -374,7 +378,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction112 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction113.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction113.java
index c7123294f..dae64728d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction113.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction113.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class PaymentTransaction113 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlUETR")
protected String orgnlUETR;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "ClrSysRef")
@@ -219,7 +222,7 @@ public PaymentTransaction113 setOrgnlUETR(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -231,7 +234,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction113 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction118.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction118.java
index ce5423840..d8dbc55c2 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction118.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction118.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -68,12 +70,14 @@ public class PaymentTransaction118 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -312,7 +316,7 @@ public PaymentTransaction118 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -324,7 +328,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction118 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -362,7 +366,7 @@ public PaymentTransaction118 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -374,7 +378,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction118 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction119.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction119.java
index 306166021..e6ed7c9cf 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction119.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction119.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction119 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -327,7 +330,7 @@ public PaymentTransaction119 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -339,7 +342,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction119 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction121.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction121.java
index f900e88f8..608a891ab 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction121.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction121.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class PaymentTransaction121 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlUETR")
protected String orgnlUETR;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "ClrSysRef")
@@ -219,7 +222,7 @@ public PaymentTransaction121 setOrgnlUETR(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -231,7 +234,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction121 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction123.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction123.java
index 56c37be69..5bfe3e2f8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction123.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction123.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class PaymentTransaction123 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "FctvIntrBkSttlmDt")
@@ -317,7 +320,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -329,7 +332,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction123 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction130.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction130.java
index 206379b23..e74e796bf 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction130.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction130.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class PaymentTransaction130 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "FctvIntrBkSttlmDt")
@@ -317,7 +320,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -329,7 +332,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction130 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction131.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction131.java
index 7f8c4006e..c22fa07d9 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction131.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction131.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -50,7 +52,8 @@ public class PaymentTransaction131 {
protected String orgnlTxId;
@XmlElement(name = "OrgnlUETR")
protected String orgnlUETR;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "ClrSysRef")
@@ -219,7 +222,7 @@ public PaymentTransaction131 setOrgnlUETR(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -231,7 +234,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction131 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction133.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction133.java
index 425bcdfd0..4ddf90b93 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction133.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction133.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -70,14 +72,16 @@ public class PaymentTransaction133 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "PmtTpInf")
protected PaymentTypeInformation28 pmtTpInf;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -318,7 +322,7 @@ public PaymentTransaction133 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndA
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -330,7 +334,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction133 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -393,7 +397,7 @@ public PaymentTransaction133 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -405,7 +409,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction133 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction135.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction135.java
index b6c4e030d..a70bea3f4 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction135.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction135.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -67,7 +69,8 @@ public class PaymentTransaction135 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -327,7 +330,7 @@ public PaymentTransaction135 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -339,7 +342,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction135 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction33.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction33.java
index 7f746c3e5..d0113a3ce 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction33.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction33.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,7 +56,8 @@ public class PaymentTransaction33 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -256,7 +259,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -268,7 +271,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction33 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction34.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction34.java
index 7c0adba37..202817f25 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction34.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction34.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class PaymentTransaction34 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RtrdInstdAmt")
@@ -289,7 +292,7 @@ public PaymentTransaction34 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -301,7 +304,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction34 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction36.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction36.java
index ee9bd59c7..547edaf26 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction36.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction36.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransaction36 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RvsdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransaction36 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction36 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction43.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction43.java
index 485bc7166..d86a0981d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction43.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction43.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransaction43 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -259,7 +262,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -271,7 +274,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction43 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction44.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction44.java
index ef10aa123..3cce68ea7 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction44.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction44.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -62,7 +64,8 @@ public class PaymentTransaction44 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RtrdInstdAmt")
@@ -292,7 +295,7 @@ public PaymentTransaction44 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -304,7 +307,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction44 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction45.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction45.java
index 0f1dbb969..001848a7d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction45.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction45.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -59,7 +61,8 @@ public class PaymentTransaction45 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RvsdInstdAmt")
@@ -264,7 +267,7 @@ public PaymentTransaction45 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -276,7 +279,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction45 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction50.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction50.java
index 52a9f6910..d17185545 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction50.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction50.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction50 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction50 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction50 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction51.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction51.java
index e118254d8..e9e8f9bb6 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction51.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction51.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction51 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction51 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction51 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction52.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction52.java
index 001fe27c2..692e8fc80 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction52.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction52.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransaction52 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -287,7 +290,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -299,7 +302,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction52 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction60.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction60.java
index 2b68709f0..8426c16f5 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction60.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction60.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction60 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction60 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction60 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction63.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction63.java
index d4161f591..dcef71ada 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction63.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction63.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransaction63 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -287,7 +290,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -299,7 +302,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction63 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction65.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction65.java
index f1c3eda3e..a7f8fb4a4 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction65.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction65.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction65 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction65 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction65 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction73.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction73.java
index cff2598e0..57aaf6b74 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction73.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction73.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class PaymentTransaction73 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlTxId")
protected String orgnlTxId;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "ClrSysRef")
@@ -191,7 +194,7 @@ public PaymentTransaction73 setOrgnlTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -203,7 +206,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction73 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction76.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction76.java
index ac78ab5a1..bf1f04cd0 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction76.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction76.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction76 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction76 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction76 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction80.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction80.java
index d6f1ef6b3..c4b349c71 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction80.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction80.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -57,7 +59,8 @@ public class PaymentTransaction80 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -286,7 +289,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -298,7 +301,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction80 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction81.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction81.java
index f67dea2e7..8d00260fa 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction81.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction81.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction81 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction81 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction81 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction87.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction87.java
index 2bbe0ee0e..6a116f9c8 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction87.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction87.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -64,12 +66,14 @@ public class PaymentTransaction87 {
protected String orgnlClrSysRef;
@XmlElement(name = "OrgnlIntrBkSttlmAmt")
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
- @XmlElement(name = "OrgnlIntrBkSttlmDt")
+ @XmlElement(name = "OrgnlIntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar orgnlIntrBkSttlmDt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -281,7 +285,7 @@ public PaymentTransaction87 setOrgnlIntrBkSttlmAmt(ActiveOrHistoricCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
@@ -293,7 +297,7 @@ public XMLGregorianCalendar getOrgnlIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction87 setOrgnlIntrBkSttlmDt(XMLGregorianCalendar value) {
@@ -331,7 +335,7 @@ public PaymentTransaction87 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -343,7 +347,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction87 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction88.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction88.java
index cd731df74..a0948ed39 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction88.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction88.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -63,7 +65,8 @@ public class PaymentTransaction88 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "SttlmPrty")
@@ -296,7 +299,7 @@ public PaymentTransaction88 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAmount value)
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -308,7 +311,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction88 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction91.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction91.java
index e0a382368..0c0c45fa2 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction91.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction91.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -57,7 +59,8 @@ public class PaymentTransaction91 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -286,7 +289,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -298,7 +301,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction91 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction94.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction94.java
index ca58651f8..8a67935a1 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction94.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransaction94.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -47,7 +49,8 @@ public class PaymentTransaction94 {
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlTxId")
protected String orgnlTxId;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "ClrSysRef")
@@ -191,7 +194,7 @@ public PaymentTransaction94 setOrgnlTxId(String value) {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -203,7 +206,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransaction94 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation15.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation15.java
index a7e2e4a38..f0e44a6b0 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation15.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation15.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransactionInformation15 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "InstgAgt")
@@ -278,7 +281,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation15 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation16.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation16.java
index 5f88f26d6..4d46d155b 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation16.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation16.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransactionInformation16 {
protected EuroMax9Amount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected EuroMax9Amount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RtrdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransactionInformation16 setRtrdIntrBkSttlmAmt(EuroMax9Amount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation16 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation17.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation17.java
index c8d716dd4..36645231d 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation17.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation17.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransactionInformation17 {
protected EuroMax9Amount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected EuroMax9Amount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RvsdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransactionInformation17 setRvsdIntrBkSttlmAmt(EuroMax9Amount valu
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation17 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation2.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation2.java
index 6dcec9c0c..c95e2e763 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation2.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation2.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransactionInformation2 {
protected CurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected CurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RtrdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransactionInformation2 setRtrdIntrBkSttlmAmt(CurrencyAndAmount va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation2 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation22.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation22.java
index 1b530c176..fe227e053 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation22.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation22.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -55,7 +57,8 @@ public class PaymentTransactionInformation22 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "InstgAgt")
@@ -278,7 +281,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -290,7 +293,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation22 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation26.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation26.java
index 11bcc6c70..92fb73baf 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation26.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation26.java
@@ -8,7 +8,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -54,7 +56,8 @@ public class PaymentTransactionInformation26 {
protected List stsRsnInf;
@XmlElement(name = "ChrgsInf")
protected List chrgsInf;
- @XmlElement(name = "AccptncDtTm")
+ @XmlElement(name = "AccptncDtTm", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar accptncDtTm;
@XmlElement(name = "AcctSvcrRef")
@@ -256,7 +259,7 @@ public List getChrgsInf() {
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getAccptncDtTm() {
@@ -268,7 +271,7 @@ public XMLGregorianCalendar getAccptncDtTm() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation26 setAccptncDtTm(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation27.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation27.java
index 58480d5f3..3986c8c84 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation27.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation27.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -61,7 +63,8 @@ public class PaymentTransactionInformation27 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RtrdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rtrdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RtrdInstdAmt")
@@ -289,7 +292,7 @@ public PaymentTransactionInformation27 setRtrdIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -301,7 +304,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation27 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation29.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation29.java
index 8051ea699..d3c056072 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation29.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation29.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransactionInformation29 {
protected ActiveOrHistoricCurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected ActiveCurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RvsdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransactionInformation29 setRvsdIntrBkSttlmAmt(ActiveCurrencyAndAm
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation29 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation5.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation5.java
index ed72eaf24..462ec2137 100644
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation5.java
+++ b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTransactionInformation5.java
@@ -9,7 +9,9 @@
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.datatype.XMLGregorianCalendar;
+import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
@@ -58,7 +60,8 @@ public class PaymentTransactionInformation5 {
protected CurrencyAndAmount orgnlIntrBkSttlmAmt;
@XmlElement(name = "RvsdIntrBkSttlmAmt", required = true)
protected CurrencyAndAmount rvsdIntrBkSttlmAmt;
- @XmlElement(name = "IntrBkSttlmDt")
+ @XmlElement(name = "IntrBkSttlmDt", type = String.class)
+ @XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar intrBkSttlmDt;
@XmlElement(name = "RvsdInstdAmt")
@@ -261,7 +264,7 @@ public PaymentTransactionInformation5 setRvsdIntrBkSttlmAmt(CurrencyAndAmount va
*
* @return
* possible object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public XMLGregorianCalendar getIntrBkSttlmDt() {
@@ -273,7 +276,7 @@ public XMLGregorianCalendar getIntrBkSttlmDt() {
*
* @param value
* allowed object is
- * {@link XMLGregorianCalendar }
+ * {@link String }
*
*/
public PaymentTransactionInformation5 setIntrBkSttlmDt(XMLGregorianCalendar value) {
diff --git a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTypeInformation28.java b/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTypeInformation28.java
deleted file mode 100644
index f1f87b9be..000000000
--- a/model-pacs-types/src/generated/java/com/prowidesoftware/swift/model/mx/dic/PaymentTypeInformation28.java
+++ /dev/null
@@ -1,200 +0,0 @@
-
-package com.prowidesoftware.swift.model.mx.dic;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import org.apache.commons.lang3.builder.EqualsBuilder;
-import org.apache.commons.lang3.builder.HashCodeBuilder;
-import org.apache.commons.lang3.builder.ToStringBuilder;
-import org.apache.commons.lang3.builder.ToStringStyle;
-
-
-/**
- * Provides further details of the type of payment.
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "PaymentTypeInformation28", propOrder = {
- "instrPrty",
- "clrChanl",
- "svcLvl",
- "lclInstrm",
- "ctgyPurp"
-})
-public class PaymentTypeInformation28 {
-
- @XmlElement(name = "InstrPrty")
- @XmlSchemaType(name = "string")
- protected Priority2Code instrPrty;
- @XmlElement(name = "ClrChanl")
- @XmlSchemaType(name = "string")
- protected ClearingChannel2Code clrChanl;
- @XmlElement(name = "SvcLvl")
- protected List svcLvl;
- @XmlElement(name = "LclInstrm")
- protected LocalInstrument2Choice lclInstrm;
- @XmlElement(name = "CtgyPurp")
- protected CategoryPurpose1Choice ctgyPurp;
-
- /**
- * Gets the value of the instrPrty property.
- *
- * @return
- * possible object is
- * {@link Priority2Code }
- *
- */
- public Priority2Code getInstrPrty() {
- return instrPrty;
- }
-
- /**
- * Sets the value of the instrPrty property.
- *
- * @param value
- * allowed object is
- * {@link Priority2Code }
- *
- */
- public PaymentTypeInformation28 setInstrPrty(Priority2Code value) {
- this.instrPrty = value;
- return this;
- }
-
- /**
- * Gets the value of the clrChanl property.
- *
- * @return
- * possible object is
- * {@link ClearingChannel2Code }
- *
- */
- public ClearingChannel2Code getClrChanl() {
- return clrChanl;
- }
-
- /**
- * Sets the value of the clrChanl property.
- *
- * @param value
- * allowed object is
- * {@link ClearingChannel2Code }
- *
- */
- public PaymentTypeInformation28 setClrChanl(ClearingChannel2Code value) {
- this.clrChanl = value;
- return this;
- }
-
- /**
- * Gets the value of the svcLvl property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a